Which method do you use to redirect the user to another page
without performing a round trip to the client?
Answers were Sorted based on User's Feedback
Answer / judy prasheela
Server.Transfer Transfer page processing from one page directly to the next page without making round trip to the server.
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / chandra sekhar
how about response.redirect();?? it also serves the same
purpose.
| Is This Answer Correct ? | 1 Yes | 3 No |
What is view state?
What is the use com component in .net?
What is msil, il?
Explain what is the difference between response.redirect & server.transfer?
what is the use of stored procedure which has only one select statement over simple select statment query ? Why to write a stored procedure then ?
How ccw (com callable wrapper) and rcw (runtime callable wrappers) works?
Please explain what garbage collection is and how it works. Provide a code example of how you can enforce garbage collection in .net?
Explain the difference between static page and dynamic page?
What are the differences between user control and server control?
What is strong-typing versus weak-typing? Which is preferred?
DateTime[] dt = new DateTime[10] for(i=0; i<10; i++) { dt[i] = DateTime(2008, 1, i+1) } How many heap object will be created for the above array. Choose the correct answer below. Ans: 1, 10, 11, 12
Explain weg config settings for exception managment in asp.net?