Difference between server.Execute and response.redirect ?
Answer Posted / jalaja
Server.execute combines the results of 2 pages into 1 page.
It is normally used when the second page does not have
controls which trigger postback events.
Response.redirect is used to redirect to another page from
the first page
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
How will you do Redo and Undo in a TextControl?
What is the difference between a default skin and a named skin?
What is view state and how it works in asp net?
Hi this is the coding for adding data in to an xml table
i want the coding for update and delete
Try
Dim emp_xml_doc As New XmlDocument
If
System.IO.File.Exists(Server.MapPath("emp.xml")) Then
emp_xml_doc.Load(Server.MapPath("emp.xml"))
Dim myrow_element As XmlElement
myrow_element =
emp_xml_doc.CreateElement("EmpDetails")
Dim str As String
str = "
To redirect the user to another page which method do we use without performing a round trip to the client?
Mention few asp.net validators.
How will you load dynamic assembly? How will create assesblies at run time?
Explain the advantages of caching?
What is event bubbling?
What is Dynamic Web and discuss its usage with the help of real life examples?
Explain the difference between Repeater and Data list control in ASP.NET?
What are user controls?
When should I use server transfer and response redirect?
What is difference between URL and URI?
What is a server cookie?