大家好,我叫薛强。
以下呢,这个是以个admin网站管理后台的源代码,。我呢,现在想把后台输入验证码的这个地方去掉,意思也就是说,登陆后台管理程序,不需要输入验证码了,也不要出现对话框这个程序只需要出现
【管理帐号:*********】
【管理密码:*********】
就可以了,大家快来抢分,回答喽~(*^__^*) 嘻嘻……交流交流!
如题:[是.../admin/index.asp里面的哦]
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="conn.asp"-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns=" http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title><%=site_info("title")%>-后台管理系统</title>
<style type="text/css">
* {
margin:0;
padding:0;
font-family:"微软雅黑", "宋体";
font-size:12px;
}
body {
background: #23528A url(images/main_bg.jpg) repeat-x;
}
#login_main {
width:608px;
height:391px;
background:url(images/login.jpg) no-repeat;
margin:0 auto;
margin-top:83px;
position:relative;
}
#login {
width:320px;
height:160px;
position:absolute;
left: 247px;
top: 170px;
}
.table {
border-collapse:collapse;
width:100%;
margin-top:10px;
}
.table td {
padding:5px;
}
.submit {
text-align:center;
}
.submit input {
padding:6px 25px;
}
</style>
</head>
<body>
<div id="login_main">
<div id="login">
<table class="table">
<form name="log_in" method="post" action="log_in.asp">
<tr>
<td width="60">账户名:</td>
<td colspan="2"><input name="user_name" type="text" size="30" /></td>
</tr>
<tr>
<td>密码:</td>
<td colspan="2"><input name="password" type="password" size="30" /></td>
</tr>
<tr>
<td>验证码:</td>
<td width="100"><input name="verifycode" type="text" size="15" /></td>
<td><img src="verifycode.asp?" width="60" height="20" title="点击重新获取验证码" onclick="this.src+=Math.random()"/></td>
</tr>
<tr>
<td colspan="3"><h2 class="submit">
<input name="reset" type="reset" value="清除数据" />
<input name="submit" type="submit" value="管理登陆" />
</h2></td>
</tr>
</form>
</table>
</div>
</div>
</body>
</html>