本文目录一览:
- 1、假设我的index.jsp页面有一个登录框,用户登录成功后会显示用户信息,未登陆时显示登录框,如何实现
- 2、请问我用myeclipse中的tomcat插件编写的index.jsp登陆界面,还有一些相关功能的jsp文件中产生了很多问题
- 3、网页制作,如何在首页之前再加一个登录页面
- 4、我是用PHP Mysql实现登录的,怎样在登陆后由登陆界面跳转到index.html主页面并在登陆的地方显示用户名
- 5、求asp+access用户登录代码:index.asp为登录界面,
假设我的index.jsp页面有一个登录框,用户登录成功后会显示用户信息,未登陆时显示登录框,如何实现
%
String user = (String)session.getAttribute( "USER" );
if ( user == null || user == "" )
{
%
trtda class='undecor'游客你好!请/a/td
tda class='undecor' onclick = popSignFlow()
登陆 /a/td
/tr
%
}
else
{
out.println( "欢迎您! " + user );
out.println( "a href = 'Logout.jsp' 退出登陆/a" );
}
%
在后台搭建一个java程序做检查嘛
然后在xml文件里面添加路径
请问我用myeclipse中的tomcat插件编写的index.jsp登陆界面,还有一些相关功能的jsp文件中产生了很多问题
应该是你的服务器配置的问题。
大体上的操作是这个样子的,具体的需要在你的环境下具体配置。
在Eclipse的菜单中如下操作:window--视图--其他--在弹出的画面中找到Server并双击里面的选项,之后会在你的Eclipse下方出现Server视图,在该Server视图中右键,新追加Server,并将你的系统选入到Server中,然后在Server视图中启动你的Tomcat服务器就可以。
在浏览器中访问:项目名称/index.jsp
网页制作,如何在首页之前再加一个登录页面
加个登陆页面其实是不难的, 关键在于你做成什么样。采用什么样的设计,先做好个设计再敲代码。
我是用PHP Mysql实现登录的,怎样在登陆后由登陆界面跳转到index.html主页面并在登陆的地方显示用户名
通常来说, index 页面与 login 页面被设计成两个页面,当通过 mysql 查询数据,并验证成功登录后,可以自动转向 index 页面(或其他页面):
if($num){
$row=mysql_fetch_array($result);
$_SESSION["username"]=$uuser;
header("Location:index.html");
在 index 页面需要添加代码:例如:
?php
session_start();
//检测是否登录,若没登录则转向登录界面
if(!isset($_SESSION['username'])){
header("Location:login.html");
exit();
}
echo '当前登录用户:' . $_SESSION['username']
求asp+access用户登录代码:index.asp为登录界面,
index.asp
% If Session("UserName")="" Then %table width="100%" border="0" cellspacing="0" cellpadding="0"
form action='UserLogin.asp' method='post' name='UserLogin' onSubmit='CheckForm();' tr
td class=rdiv align="center"用户名:/div/td
td input name="username" type="text" class="box" id="textfield" size="16"/td
td class=rdiv align="center"密码:/div/td
tdinput name="userpassword" type="password" class="box" id="textfield2" size="16"/td
tdinput name='Login' type='submit' id='Login' value=' 登录 ' input name='Reset' type='reset' id='Reset' value=' 清除 '/td
td /td
td div align="center"/div/td
/tr/form
/table%
Else response.write " 欢迎您!" Session("UserName")
response.write "a href='UserLogout.asp'退出/a"
end if
%
UserLogin.asp
!--#include file="conn.asp"--
%
dim sql
dim rs
dim username
dim userpassword
username=trim(request("username"))
userpassword=trim(Request("userpassword"))
set rs=server.createobject("adodb.recordset")
sql="select * from User where username='" username "' and userpassword='" userpassword "'"
rs.open sql,conn,1,3
if not(rs.bof and rs.eof) then
if userpassword=rs("userpassword") then
session("UserName")=rs("username")
Response.Redirect "login.asp"
end if
end if
Response.Write("script language=""JavaScript""alert(""用户名或密码错误!!"");history.go(-1);/script")
rs.close
conn.close
set rs=nothing
set conn=nothing
%
login.asp
!--#include file="conn.asp"--
%
UserName=session("UserName")
set rs=server.createobject("adodb.recordset")
sqltext="select * from xinxi where user='" UserName "'"
rs.open sqltext,conn,1,1
%
%= rs("xinxi") %
conn.asp
%
dim conn,db
dim connstr
db="Databases/date.mdb" '数据库文件位置
on error resume next
connstr="DBQ="+server.mappath(""db"")+";DefaultDir=;DRIVER={Microsoft Access Driver (*.mdb)};"
set conn=server.createobject("ADODB.CONNECTION")
if err then
err.clear
else
conn.open connstr
end if
sub CloseConn()
conn.close
set conn=nothing
end sub
%
还有个推出的
UserLogout.asp
%
session("UserName")=""
Response.Redirect "index.asp"
%