开发者

picking up information server side with redirected pages

开发者 https://www.devze.com 2023-02-28 04:15 出处:网络
I have a page (abc.aspx) which I am dynamically (via javascript) directing to a specific url.My question is, 开发者_运维问答lets say I specify the page to hit (in the action) as verify.aspx.I then sub

I have a page (abc.aspx) which I am dynamically (via javascript) directing to a specific url. My question is, 开发者_运维问答lets say I specify the page to hit (in the action) as verify.aspx. I then submit the form to verify.aspx, the onload function runs, how do I get at the form field values that were submitted from abc.aspx?

thanks.


You can access this with a property of the Page that is a piece of the Request object

Request.Form

Represents a collection of all the goodies you are after.

0

精彩评论

暂无评论...
验证码 换一张
取 消