ASP.Net Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 2058 Page Views: 

How ASP .NET is different from ASP?



Posted By: Avi Date: 28 August 2009 06:41:41 AM
 Answer:

In ASP.Net, the scripting code is separated from the HTML, code is compiled as a DLL, and these DLLs are executed on the server. While these features are not available with ASP.


Posted By: eTechPlanet


Date: 28 August 2009 06:41:41 AM

ASP.NET has better language support, a large set of new controls, XML-based components, and provides increased performance by running compiled code.


Posted By: John


Date: 16 September 2009 05:22:33 PM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image 9WBibF
Related Questions
ASP.Net : Explain the various types of ASP.Net Caching?

Explain the various types of ASP.Net Caching?

Basically, ASP.Net Caching is of two types: 1) Output Caching: The rendered html page is stored int....
Category: ASP.Net Date: 11/6/2009 7:48:31 AM
ASP.Net : Explain ASP.Net Caching?

Explain ASP.Net Caching?

ASP.Net Caching is a mechanism to store the frequently used data into the server memory which can be....
Category: ASP.Net Date: 11/6/2009 7:44:44 AM
ASP.Net : Which properties on a ComboBox do you set, prior to calling the DataBind method, to display data in the ComboBox?

Which properties on a ComboBox do you set, prior to calling the DataBind method, to display data in ....

Set the DataTextField property with a column name and DataSource property with a DataTable object (o....
Category: ASP.Net Date: 10/28/2009 6:10:25 AM
ASP.Net : How can you enable automatic paging in DataGrid?

How can you enable automatic paging in DataGrid?

To use the built-in paging of DataGrid, set the AllowPaging property to true and the PageSize proper....
Category: ASP.Net Date: 10/28/2009 6:05:09 AM
ASP.Net : What property must you set, and what method must you call, in order to bind the data from a data source to the Repeater control?

What property must you set, and what method must you call, in order to bind the data from a data sou....

You must set the DataSource property and call the DataBind method.
Category: ASP.Net Date: 10/28/2009 5:15:14 AM