查看: 918|回复: 6
|
我有ASP问题... 如何把Page1.asp里的textfield value 带去Page2.asp里面?
[复制链接]
|
|
我有ASP问题... 如何把Page1.asp里的textfield value 带去Page2.asp里面? |
|
|
|
|
|
|
|
发表于 10-3-2006 05:03 AM
|
显示全部楼层
原帖由 伪君子 于 10-3-2006 04:55 AM 发表
我有ASP问题... 如何把Page1.asp里的textfield value 带去Page2.asp里面?
这是基本的基本吧..
用Form Post 或 Query String.. |
|
|
|
|
|
|
|
楼主 |
发表于 10-3-2006 05:57 AM
|
显示全部楼层
可是...
我就是不能成功的在Page2拿到Page1的资料...
呃... 我是第一次用ASP...
可以给我一些例子吗?
就像..
我要用
thisurl = "Member.asp?try="
response.Redirect thisurl &txtsearch
可是txtsearch就是带不到Page2...
假如我用...
search = request.Form("txtsearch") 在Page2...
search的value是空的... |
|
|
|
|
|
|
|
发表于 10-3-2006 06:39 AM
|
显示全部楼层
search = request.Form("txtsearch") ?
Form可能是多余的, 用request就好了。 因为你用的是GET的Method而不是Post的Method。
如果还不行记得Check你的Value到底有没有Set |
|
|
|
|
|
|
|
发表于 10-3-2006 09:09 AM
|
显示全部楼层
原帖由 伪君子 于 10-3-2006 05:57 AM 发表
可是...
我就是不能成功的在Page2拿到Page1的资料...
呃... 我是第一次用ASP...
可以给我一些例子吗?
就像..
我要用
thisurl = "Member.asp?try="
response.Redirect thisurl &txtsear ...
你应该在 page2 用 Request.QueryString ("txtsearch") 或 Request ("txtsearch") |
|
|
|
|
|
|
|
楼主 |
发表于 10-3-2006 03:15 PM
|
显示全部楼层
假如我要写一个类似下面的response.redirect... 应该如何写?
zbc.asp?try = xxx
xxx 是Valiable来的...
根据User的答案而决定... |
|
|
|
|
|
|
|
发表于 10-3-2006 10:56 PM
|
显示全部楼层
原帖由 伪君子 于 10-3-2006 03:15 PM 发表
假如我要写一个类似下面的response.redirect... 应该如何写?
zbc.asp?try = xxx
xxx 是Valiable来的...
根据User的答案而决定...
vbl = "xxx"
url = "zbc.asp?try=" & vbl
Response.Redirect url |
|
|
|
|
|
|
| |
本周最热论坛帖子
|