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 Query Strings?
.NET INTERVIEW QUESTIONS - 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.
2009-07-28, 4796👍, 0💬
Popular Posts:
What is the benefit of using #define to declare a constant? Using the #define method of declaring a ...
How can I show HTML examples without them being interpreted as part of my document? Within the HTML ...
Can each Java object keep track of all the threads that want to exclusively access to it?
Do You Know the Book "JUnit in Action"? You should know this book. It received some good reviews. Ti...
How To Define a Data Source Name (DSN) in ODBC Manager? - Oracle DBA FAQ - ODBC Drivers, DSN Configu...