hello
how can i get the parameter "param" from the url
http://localhost/myapp/webform1.aspx?param=p1 in the serverside c# code?

thank you

Re: url parameter by Nick

Nick
Tue Nov 23 00:48:09 CST 2004

You need to read about the intrinsic Request object
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwebhttpcontextclassrequesttopic.asp

The QueryString property returns a list of parameters that are passed in the
query string.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwebhttprequestclassquerystringtopic.asp

Hope this helps,
--- Nick

"zbcong" <congzhebin@capinfo.com.cn> wrote in message
news:%23E2JxnQ0EHA.3120@TK2MSFTNGP12.phx.gbl...
> hello
> how can i get the parameter "param" from the url
> http://localhost/myapp/webform1.aspx?param=p1 in the serverside c# code?
>
> thank you
>
>