GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Microsoft  >  ASP.NET 2.0

 Print  |  
Question:  what is the difference between Server.Transfer() and Server.Execute()?



October 10, 2006 14:01:12 #1
 balaji   Member Since: Visitor    Total Comments: N/A 

RE: what is the difference between Server.Transfer() ...
 

hai,

Server.Transfer()-It ends up the execution of current form  and  begins execution with new web form.In server.transfer() execution is transferred so that in the url we will find previous webform.

Server.Execute()-it begins execution with new web form  but it still holds current web form .using this we can combine the result of two web forms.

     

 

Back To Question