action=“验证的页面”在验证的页面上使用
session获取对象,具体方法
<%
Session("name")=request.form("name")
Session("password")=request.form("pass")
If
Session("name")="王明"and
Session("password")="123"
Then
Response.Redirect"chonggong.asp"
Else
Response.Redirect"shibai.asp"
End
If
%>
这与数据库连接可以在Dreamweaver中添加实现。
有什么不明白的给我回话。
希望我说的对你有所帮助
把修改页面的内容提交到当前页面或者另一个页面,再更新就行了呀。更新update 数据表 set .....,获取上一页面值如:title=request.form("title"):给段代码给你看看:
<%
set conn=server.createobject("adodb.connection")
conn.open "driver=dbq=" &server.mappath("infodb#.mdb")
set rs=server.CreateObject("ADODB.RecordSet")
sqltxt="select * from zj_users where 用户名='"&session("zj_username")&"'"
rs.open sqltxt,conn,0,2
%>
<td><form id="form1" name="form1" method="post" action="?" >
<table width="780" border="0" cellpadding="6" cellspacing="1" bgcolor="#CC9999">
<tr>
<td width="90" bgcolor="#3366CC"><span class="STYLE1">单位名称:</span></td>
<td width="644" bgcolor="#3366CC"><input name="txtcompany" type="text" id="txtcompany" size="40" maxlength="20" value="<%=rs("职介单位")%>" /></td>
</tr>
<tr>
<td bgcolor="#3366CC"><span class="STYLE1">联系电话:</span></td>
<td bgcolor="#3366CC"><input name="txtTel" type="text" id="txtTel" size="30" maxlength="18" value="<%=rs("联系电话")%>" /></td>
</tr>
<td bgcolor="#3366CC"> </td>
<td bgcolor="#3366CC"><input type="submit" name="Submit" value="修改" /></td>
</tr>
</table>
</form> </td>
</tr>
</table></td>
</tr>
</table>
<%
dim sContent1
if request.Form("Submit")="修改" then
rs("职介单位")=request.Form("txtcompany")
rs("单位介绍")=sContent1
rs("所在地")=request.Form("txtAddr")
rs("联系电话")=request.Form("txtTel")
rs.update
response.Write("<script>alert('修改成功!')</script>")
response.Write("<script>window.location='index.asp'</script>")
end if
%>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)