which type of data u send through request.querystring()?and
tell abt exact size?
Answer / naval
The data goes through request.querystring() in the form of get method i.e. embed with url and size of this 1024 bytes
Is This Answer Correct ? | 12 Yes | 1 No |
What is JIT and how is works ?
Where is asp.net view state stored?
What is boxing and how it is done internally?
You are using the try? catch block seen in the following code segment, but no exceptions are ever caught by the catch block. What is the problem? SqlConnection cn =new sqlConnection(strSQL); SqlDataSet ds; try { cn.open(); //perform the data processing steps ??.. } catch (OleDbException e) { ?.. } a) The exception class is wrong; it should be sqlErrors. b) The exception class is wrong; it should be sqlSyntaxExceptios. c) The exception class is wrong; it should be sqlExceptions. d) The exception class is wrong; it should be sqlExcptions.
2 Answers Microsoft, Syntax Softtech,
How can we Maintain more than on config file in one .Net web application and how?
What is the lifespan for items stored in ViewState?
What is preprocessor in .net and type, where it use?
What is comparevalidator?
What happens if an ASP.NET server control with event-handling routines is missing from its definition?
In a Code-Behind class generally which type of code is found ?
what is view stat? how it is use.
Can you use Web API with ASP.NET Web Form?