narendran


{ City } chennai
< Country > india
* Profession * programmer
User No # 41264
Total Questions Posted # 2
Total Answers Posted # 1

Total Answers Posted for My Questions # 5
Total Views for My Questions # 19249

Users Marked my Answers as Correct # 3
Users Marked my Answers as Wrong # 0
Questions / { narendran }
Questions Answers Category Views Company eMail

what is difference between declaring the pointer as int and char in c language?

3 C 12013

What is meant by SQL,PL/SQL,SQL PLUS? Is there any differnece between them?

HSBC,

2 Programming Languages AllOther 7236




Answers / { narendran }

Question { Infosys, 5065 }

What is Difference Between Server.Response and
Response.Redirect in ASP.Net with C#?


Answer

The data transfering between two page will be more differ on server.Transfer() and Response.Redirect().

Server.Transfer



Server.Transfer() helps the one less round trip. The main advantage of this transfer the first page to second page with better performance. The data can pass through variables, query string and also can retrive from the previous page control value.

Eg: Server.Transfer("Default.aspx");

Response.Redirect()


It is very similar to server.Transfer. The main difference is the posted pervious page values can't be accessable. Here also the data can pass through server variables and query string. It simply redirect the page from one page to another.

Eg: Response.Redirect("Default.aspx")

Note: But the pervious page values can't be accessable by Response.Redirect().

By the Following code setup attachement, This concept will be more understandable. Make use of it.

for code:
http://www.dotnetfunda.com/articles/article164.aspx

Is This Answer Correct ?    3 Yes 0 No