Interview Preparation mode beta
Funny Facebook Status Funny Facebook Status
Enter your email address

Explain how to pass a querystring from an .asp page to aspx page

Nice?Vote!

1 Answer

Nice?Vote!
Consider the following URL:

http:// localhost/form.aspx?param1=career&param2=ride

This html addresses use QueryString property to pass values between pages.

From the URL above the information obtained is:

form.aspx: which is the destination page for your browser.
Param1 is the first parameter, the value of which is set to career
Param2 is the first parameter, the value of which is set to ride

The
answered 1 year ago by KrishnaMachiraju (7,980 points)

Related questions