How much data (Max K) can go into a QueryString?
Answers were Sorted based on User's Feedback
Answer / usha
Servers should be cautious about depending on URI lengths
above 255 bytes, because some older client or proxy
implementations may not properly support these lengths.
The spec for URL length does not dictate a minimum or
maximum URL length, but implementation varies by browser. On
Windows: Opera supports ~4050 characters, IE 4.0+ supports
exactly 2083 characters, Netscape 3 -> 4.78 support up to
8192 characters before causing errors on shut-down, and
Netscape 6 supports ~2000 before causing errors on start-up
http://www.interview-questions.maxmice.com
Is This Answer Correct ? | 12 Yes | 0 No |
Answer / sujan
The answer though, depends on the browser
. IE, I believe, limits you to 4K.
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / anandkbs
it depends upon the browser where the application runs.
Maximum URL length is 2,083 characters in Internet Explorer
Internet Explorer versions 5 , 6 and 7
------------------ 2,048 characters.
Netscape Navigator version 4
---------------------------------- 30,000 characters
It's 4096 characters in ASP.Net but it can be configured
using Web.config file.
Is This Answer Correct ? | 1 Yes | 0 No |
How To Generate ConnectionString By Using Notepad??
Is it necessary to undertsand these events of an ASPX page execute. Explain its importantance?
What is the difference between cookie and session?
What is difference between view state and session state?
What is a Metadata?
In the context of a comparison, what is object identity versus object equivalence?
What is a response cookie?
What is global.asax file used for?
How to identify host of my system? How to identify servername of my system? How to identify domainname of my system?
Below is a code extract from an ASP.Net application. The code basically reads data from the “name” field in the “members” table and prints them onto the webpage. Using the assumptions provided, fill in the 4 blanks below so that the code will run correctly. ‘Assumptions: ‘conn_str is a variable that holds the connection string to the database ‘Objects dbcomm and dbread are already declared earlier dbcomm = New OleDbCommand("SELECT name FROM members", conn_str) dbread = dbcomm._______________ _____________________ response.write(_______________) _____________________ dbread.Close()
Why Global.asax is used?
what is managed and unmanaged code?