asp增加删除修改数据的代码,无需配置数据源
最好包括登录代码,还有怎样在一个页面的多个表格中,显示多个不同的数据表中的数据。300财富值送给你,回答满意10元现金给你。mydesign@126.com错了,邮箱是x...
最好包括登录代码,还有怎样在一个页面的多个表格中,显示多个不同的数据表中的数据。
300财富值送给你,回答满意10元现金给你。
mydesign@126.com
错了,邮箱是xtfwzy@126.com 展开
300财富值送给你,回答满意10元现金给你。
mydesign@126.com
错了,邮箱是xtfwzy@126.com 展开
1个回答
展开全部
正在写!
登陆页面代码如下:
<%'option explicit%>
<%
'强制浏览器重新访问服务器下载页面,而不是从缓存读取页面
Response.Buffer = True
Response.Expires = -1
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
%>
<!--#include file="conn.asp" -->
<%
if request("action")="" then
%>
<HTML>
<HEAD>
<TITLE>系统登陆</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<STYLE>
body {font-family: "宋体";font-size: 12px;text-decoration: none;}
td {font-size: 12px;color: #666666;text-decoration: none;line-height: 18px;font-family: "宋体";}
.S1{
font-family: "宋体";
font-weight: bold;
color: #ff0000;
font-size:16px;
text-decoration: none}
.style1 {
color: #ff0000;
font-weight: bold;
}
</STYLE>
</head>
<body bgcolor="#FFFFFF">
<table width="100%" height="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="476" height="311" valign="top"><br>
<FORM ACTION="index.asp?action=login" METHOD="post" name="loginform">
<table width="80%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="87" height="30" align="right">登录名:</td>
<td valign="middle"><input type="text" name="username" tabindex="1" style="width:200px;" alt="请在此输入登录名"></td>
</tr>
<tr>
<td height="30" align="right">密 码:</td>
<td><INPUT name="pwd" type="password" tabindex="2" style="width:200px;" alt="请在此输入密码"></td>
</tr>
<tr>
<td height="30" align="right">验证码:</td>
<td height="30"><input type=text name="verifycode" maxLength=4 size="6" tabindex="3" class="textbox" alt="请在此输入验证码,看不清楚请点击图片刷新">
<font color=red> <-请输入验证码</font> <IMG style="cursor:hand;" src="inc/verifycode.asp?n=<%=Timer%>" onClick="this.src=this.src;" align="absmiddle" alt="看不清楚,点击图片刷新"></td>
</tr>
<tr>
<td></td>
<td colspan="2"><input src="images/dl.gif" type="image" tabindex="5" name="enter" border="0" onClick="return checkform()"></td>
</tr>
</table>
</form></td>
</tr>
</table>
<script language=javascript>
<!--
function document.onreadystatechange()
{ var app=navigator.appName;
var verstr=navigator.appVersion;
if(app.indexOf('Netscape') != -1) {
alert('友情提示:\n 您使用的是Netscape浏览器,可能会导致无法使用后台的部分功能。建议您使用 IE6.0 或以上版本。');
} else if(app.indexOf('Microsoft') != -1) {
if (verstr.indexOf('MSIE 3.0')!=-1 || verstr.indexOf('MSIE 4.0') != -1 || verstr.indexOf('MSIE 5.0') != -1 || verstr.indexOf('MSIE 5.1') != -1)
alert('友情提示:\n 您的浏览器版本太低,可能会导致无法使用后台的部分功能。建议您使用 IE6.0 或以上版本。');
}
document.loginform.username.focus();
}
function checkform() {
if(loginform.username.value == '') {
alert('请输入管理账号!');
loginform.username.focus();
return false;
}
if(loginform.pwd.value == '') {
alert('请输入密码!');
loginform.pwd.focus();
return false;
}
if (loginform.verifycode.value == '') {
alert ('请输入验证码!');
loginform.verifycode.focus();
return false;
}
}
//-->
</script>
</html>
<%
else
nowusername=request.form("username")
nowpwd=request.form("pwd")
if Trim(Request.Form("Verifycode"))<>Trim(Session("Verifycode")) then
%>
<script language=javascript>
alert('您输入的后台管理认证码不对,请重新输入!')
window.history.go(-1)
</script>
<%
response.end
end if
sql="select * from admin where username='"&nowusername&"' and pwd='"&nowpwd&"'"
set rs=conn.execute(sql)
if rs.eof then
%>
<script language=javascript>
alert('登录名称或密码错误!')
window.history.go(-1)
</script>
<%
response.end
end if
session("username")=rs("username")
session("id")=rs("id")
response.redirect "main.asp"
end if
%>
登陆页面代码如下:
<%'option explicit%>
<%
'强制浏览器重新访问服务器下载页面,而不是从缓存读取页面
Response.Buffer = True
Response.Expires = -1
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
%>
<!--#include file="conn.asp" -->
<%
if request("action")="" then
%>
<HTML>
<HEAD>
<TITLE>系统登陆</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<STYLE>
body {font-family: "宋体";font-size: 12px;text-decoration: none;}
td {font-size: 12px;color: #666666;text-decoration: none;line-height: 18px;font-family: "宋体";}
.S1{
font-family: "宋体";
font-weight: bold;
color: #ff0000;
font-size:16px;
text-decoration: none}
.style1 {
color: #ff0000;
font-weight: bold;
}
</STYLE>
</head>
<body bgcolor="#FFFFFF">
<table width="100%" height="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="476" height="311" valign="top"><br>
<FORM ACTION="index.asp?action=login" METHOD="post" name="loginform">
<table width="80%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="87" height="30" align="right">登录名:</td>
<td valign="middle"><input type="text" name="username" tabindex="1" style="width:200px;" alt="请在此输入登录名"></td>
</tr>
<tr>
<td height="30" align="right">密 码:</td>
<td><INPUT name="pwd" type="password" tabindex="2" style="width:200px;" alt="请在此输入密码"></td>
</tr>
<tr>
<td height="30" align="right">验证码:</td>
<td height="30"><input type=text name="verifycode" maxLength=4 size="6" tabindex="3" class="textbox" alt="请在此输入验证码,看不清楚请点击图片刷新">
<font color=red> <-请输入验证码</font> <IMG style="cursor:hand;" src="inc/verifycode.asp?n=<%=Timer%>" onClick="this.src=this.src;" align="absmiddle" alt="看不清楚,点击图片刷新"></td>
</tr>
<tr>
<td></td>
<td colspan="2"><input src="images/dl.gif" type="image" tabindex="5" name="enter" border="0" onClick="return checkform()"></td>
</tr>
</table>
</form></td>
</tr>
</table>
<script language=javascript>
<!--
function document.onreadystatechange()
{ var app=navigator.appName;
var verstr=navigator.appVersion;
if(app.indexOf('Netscape') != -1) {
alert('友情提示:\n 您使用的是Netscape浏览器,可能会导致无法使用后台的部分功能。建议您使用 IE6.0 或以上版本。');
} else if(app.indexOf('Microsoft') != -1) {
if (verstr.indexOf('MSIE 3.0')!=-1 || verstr.indexOf('MSIE 4.0') != -1 || verstr.indexOf('MSIE 5.0') != -1 || verstr.indexOf('MSIE 5.1') != -1)
alert('友情提示:\n 您的浏览器版本太低,可能会导致无法使用后台的部分功能。建议您使用 IE6.0 或以上版本。');
}
document.loginform.username.focus();
}
function checkform() {
if(loginform.username.value == '') {
alert('请输入管理账号!');
loginform.username.focus();
return false;
}
if(loginform.pwd.value == '') {
alert('请输入密码!');
loginform.pwd.focus();
return false;
}
if (loginform.verifycode.value == '') {
alert ('请输入验证码!');
loginform.verifycode.focus();
return false;
}
}
//-->
</script>
</html>
<%
else
nowusername=request.form("username")
nowpwd=request.form("pwd")
if Trim(Request.Form("Verifycode"))<>Trim(Session("Verifycode")) then
%>
<script language=javascript>
alert('您输入的后台管理认证码不对,请重新输入!')
window.history.go(-1)
</script>
<%
response.end
end if
sql="select * from admin where username='"&nowusername&"' and pwd='"&nowpwd&"'"
set rs=conn.execute(sql)
if rs.eof then
%>
<script language=javascript>
alert('登录名称或密码错误!')
window.history.go(-1)
</script>
<%
response.end
end if
session("username")=rs("username")
session("id")=rs("id")
response.redirect "main.asp"
end if
%>
TableDI
2024-07-18 广告
2024-07-18 广告
要将两个表格中的数据进行匹配,首先确定两个表格中都存在的共同字段,如ID、姓名或特定标识符。接着,使用数据处理工具(如Excel、SQL或Python的pandas库)来执行匹配操作。在Excel中,可以通过VLOOKUP函数或数据透视表来...
点击进入详情页
本回答由TableDI提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询