What is Querystring collection?
Answer / sowmya
The QueryString collection is used to retrieve the variable
values in the HTTP query string.
The HTTP query string is specified by the values following
the question mark (?), like this:
<a href= "test.asp?txt=this is a query string test">Link
with a query string</a>
The line above generates a variable named txt with the
value "this is a query string test".
Query strings are also generated by form submission, or by
a user typing a query into the address bar of the browser.
Request.QueryString(variable)[(index)|.Count]
| Is This Answer Correct ? | 4 Yes | 1 No |
What are the ASP Scripting Objects?
Define a form collection?
How to convert a string into an integer in .net?
___________ and ____________ properity to be used to create localized version of a form
What is an asp model?
Do you know ASP? Are u willing to work in it?
What is the Difference B/W Onclick() and Oncommand() in ASP.Net? If Possible Explain with Realtime Example?
How to run FileSystemObject in ASP
What is the difference between post and get method.
How can we do validation of the fields in a project?
How are sessions maintained? A. The browser sends a cookie to the server with each request. B. The browser sends a Querystring variable to the server with each request. C. The browser sends a hidden Form variable to the server with each request. D. The browser sends a long variable to the server in the BODY of each request. E. None of the above.
What is the difference between server-side validation and client-side validation?