What are ASP.NET Web Forms? How is this technology different than what is available though ASP (1.0-3.0)?

Showing Answers 1 - 2 of 2 Answers

hector

  • Jul 4th, 2005
 

ok,the asp.net webforms you can easily to use the webcontrol which integrated in,and you can use a powerful data access :ado.net .use dataset to stored data and operate easily and entiry dataset is baseon XML.

  Was this answer useful?  Yes

samiksc

  • Jan 12th, 2006
 

The points of difference are as follows:

  1. ASP.Net web forms have a code behind file which contains all event handling code. ASP does not have such facility to separate programming logic from design.
  2. ASP.Net web forms inherit the class written in code behind. ASP does not have the concept of inheritance.
  3. ASP.Net web forms use full fledged programming language, while ASP pages use scripting language.
  4. ASP.Net web applications are configurable (web.config) while ASP applications are not.
  5. ASP.Net webforms can use custom controls through the @register directive, which is not available with ASP.
  6. ASP.Net web forms have ADO.Net which supports XML integration and integration of data from two or more data sources, while ASP has ADO which is a simple COM object with limited facilities.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions