17 August, 2009

Differences between Asp and Asp.net

ASP----------
1. Asp supports interpreted model2. In asp you must place all directives on the first line of a page with in the same delimiting block3. Asp uses only 2 scripting languages vb script and java script4. Asp has no inbuilt facility for Validation of controls. Developer has to write code for both client side and server side validation
ASP.NET------------
1. Asp.net supports compiled model2. In asp.net you can place directives at any place in .aspx file . But standard practice is to place them at the begining of the file3. Asp.net is not constrained to 2 languages. we can use any .net complaint languages like c# vb.net etc4. Asp.net inbuilt facility for validation of controls. There are a set of validation controls which are easy to implement.

No comments: