What is the difference between Server.Transfer and
Response.Redirect? Why would I choose one over the other?
Answer Posted / vaibhav nagar
Response.Redirect sends message to the browser saying it to
move to some
different page, while server.transfer does not send any
message to the browser
but rather redirects the user directly from the server
itself. So in server.transfer
there is no round trip while response.redirect has a round
trip and hence puts
a load on server.
Using Server.Transfer you can not redirect to a different
from the server itself.
Example if your server is www.yahoo.com you can not use
server.transfer to move
to www.microsoft.com but yes you can move to
www.yahoo.com/travels, i.e.
within websites. This cross server redirect is possible
only using
Response.redirect.
With server.transfer you can preserve your information. It
has a parameter
called as “preserveForm”. So the existing query string etc.
will be able in the
calling page.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What is boxing and unboxing in asp.net?
How do you change the session time-out value?
In the Repeater control which way you can edit?
Explain about ASP.NET?
Give a few examples of page life cycle events.
What is cookies in asp net?
What is datagrid asp.net?
Explain how to prepare culture-specific formatting in .net.
What are the features of asp net?
What is postback and autopostback in asp.net?
What ports must be open for DCOM over a firewall? What is the purpose of Port 135?
What are the ways of preserving data on a Web Form in ASP.NET?
Hello, Using Visual Studio 2005 (VB) I am working to create a Web Site implementing the following: Within a gridView I have placed a dropdownlist control with a DataSourceID="SDSLkupList". SDSLkupList is a sqlDataSource used to store a lookup list for dropdownlist translation from ID to text. SDSLkupList contains the translation text and other fields related to the dropdown selection ID. (Thought it would be efficient to get everything at the same time.) I would like to provide the user the ability to select from the dropdownlist and, based on the selection, use labels to list related columns stored on the SDSLkupList in separate gridView columns. I have read that SqlDataSources are not meant to be used for individual controls. Since SDSLkupList contains all related information, is there a way to do a find using the dropdownlist selectedValue? (I was not able to discover one.) Otherwise, what should I use? It would need to set the labels on the gridView DataRowBound event as well as the SelectedIndexChanged events. Has anyone done this? Any help would be appreciated. Thanks in Advance. Neal
What are type/key pairs in client script registration?
Where viewstate value is stored in asp.net?