Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is Query String and What are benefits and limitations of using
What is Query String and What are benefits and limitations of using Query Strings?
✍: Guest
A query string is information sent to the server appended to the end of a page URL.
Following are the benefits of using query string for state management:-
ã No server resources are required. The query string containing in the HTTP
requests for a specific URL.
ã All browsers support query strings.
Following are limitations of query string :-
ã Query string data is directly visible to user thus leading to security problems.-
ã Most browsers and client devices impose a 255-character limit on URL length.
Below is a sample gLoginh query string passed in URL http://www.querystring.com/
login.asp?login=testing. This query string data can then be requested later by using
Request.QueryString(“login”).
2007-10-23, 5722👍, 0💬
Popular Posts:
What will be printed as the result of the operation below: main() { char *p1; char *p2; p1=(char *)m...
When should the method invokeLater() be used? This method is used to ensure that Swing components ar...
What is CodeDom? “CodeDom” is an object model which represents actually a source code. It is designe...
How To Truncate an Array? - PHP Script Tips - PHP Built-in Functions for Arrays If you want to remov...
How To Set Background to Transparent or Non-transparent? - CSS Tutorials - HTML Formatting Model: Bl...