|
主题: 谁知道正确输入密码后,连接到指定页怎么做?是和数据库无关的方
|
 hnny
职务:普通成员
等级:1
金币:0.0
发贴:29
注册:2001/5/16 8:39:10
|
#12001/5/19 18:29:11
我现在的语句是这样: <% if request.form("T1")="qwerty" then ="master.asp" %> 其中 then 以前好象没什么问题,master.asp是要连接的页,等号前怎么写?
|
 romp
职务:普通成员
等级:1
金币:0.0
发贴:141
注册:2001/1/10 21:59:40
|
#22001/5/19 19:11:31
<% if xxxxx then response.redirect("xxx.asp") end if %>
|
 hnny
职务:普通成员
等级:1
金币:0.0
发贴:29
注册:2001/5/16 8:39:10
|
#32001/5/19 20:42:56
舒服!当然是说你的回答,和方式。我的问题解决了。 十分感谢!
|
 绿茶
职务:普通成员
等级:8
金币:10.0
发贴:19267
注册:2000/12/28 12:10:01
|
#42001/5/22 9:36:05
如还要传递REQUEST对象内容,建议使用SERVER。TRANSFER方法,即可把招待转入另一ASP页面,同时保持原页面请求中的REQUEST值。
|