diff between Server.Transfer() and Server.Execute()
Answer Posted / dasharatham
it is redirection of the page with in the same application.
it does not take round trip process back to the client
browser.it is faster than response redirect().
the Server.Execute method is used with ASP pages to execute
another ASP page. This allows greater flexibility in ASP
execution by allowing conditional execution.
| Is This Answer Correct ? | 7 Yes | 7 No |
Post New Answer View All Answers
What is the significance of ASP.NET routing?
Will the asp.net validators run in server side or client side? How do you do client-side validation in .net? How to disable validator control by client side javascript?
What methods are fired during the page load? Init()
What do you mean by role-based security?
Define the term Web Garden?
Which is the parent class of the web server control?
a web application needs to be created to accept the product name and quantity of a toy from a customer. After the customer has entered the product name the application needs to display the discounted price of the product to the customer (company is offering 35% discount on all products). The application should allow the customer to select the product name from a list box. and also while i'm data binding to a label with custom data binding with some declarations : "The Discounted Price is "+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)) - ((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)). Where i need to give this declaration in asp.net 2.0.
How many types of validation are there?
How to use push notification?
What are strong names?
Why cyclomatic complexity is important?
What is the concept of postback in asp.net?
Can I combine classic asp and asp.net pages?
What is the difference between system.stringbuilder and system.string
Differentiate strong typing and weak typing