ASP.NET - What is QueryString? Benefits and limitations of using
querystring - May 06, 2009 at 17:20 PM by Shuchi Gauri
What is QueryString? Benefits and limitations of using querystring.
Querystring is way to transfer information from one page to another through the
URL. QueryString is attached to the URL with "?".
Advantages:
a. Supported by all the browsers
b. No extra effort is needed to code.
c. Easy to use.
Disadvantages:
a. All the attributes and values are visible to the end user. Therefore, they
are not secure.
b. There is a limit to URL length of 255 characters.
Also read
This html addresses use QueryString property to pass values between pages.......
Cross Page Posting: It refers to the scenario where on event of some controls
posts from one page to another.........
PreviousPage property is set to the page property of the nest page to access
the viewstate value..........
|