ASP.NET Application is next version of ASP, is a programming framework used to generate enterprise-set Web Applications. The ASP.NET offer more services than ASP.
Advantages with ASP.NET
- ASP.NET drastically reduces the quantity of code required to build large applications.
- ASP.NET makes development simpler and easier to sustain with an event-driven, server-side programming model.
- ASP.NET pages are easy to write and sustain because the source code and HTML are together.
- the source code is executed on the server. The pages have lots of control and flexibility by this approach.
- The source code is compiled the first time the page is requested. Execution is fast as the Web Server compiles the page the first time it is requested. The server saves the compiled version of the page for use next time the page is requested.
- The HTML produced by the ASP.NET page is sent back to the browser. The application source code you write is not sent and is not easily stolen.
- ASP.NET makes for easy exploitation. There is no need to register components because the configuration information is built-in.
- The Web server constantly monitors the pages, components and applications running on it. If it notices memory leaks, infinite loops, other illegal software or activities, it seamlessly kills those activities and restarts itself.
- ASP.NET validates information (validation controls) entered by the user without writing a single line of code.
- ASP.NET easily works with ADO .NET using data-binding and page formatting features
- ASP.NET applications run fater and counters large volumes of users without performance problems.
1 comment:
Nice advantages... I like it...
Post a Comment