Saturday 9 February 2013

Differences comapre to Classic ASP with ASP.NET


               ASP.NET uses the multi-language abilities of the .NET Common Language Runtime,    allowing Web pages to be coded in VB.NET, C#, J#, Delphi.NET, Chrome, etc.


         Ability to use the code-behind development model to separate business logic from 
    presentation.


         Ability to use true object-oriented design for programming pages and controls

        Session state in ASP.NET can be saved in a Microsoft SQL Server database or in a
    separate process running on the same machine as the Web server or on a different
    machine. That way session values are not lost when the Web server is reset or the ASP.NET
    worker process is recycled. 

       Ability to cache the whole page or just parts of it to improve performance.

    Compiled code means applications run faster with more design-time errors trapped at the
    development stage


    ASP.NET encourages the programmer to develop applications using an event-driven GUI
   model, rather than in conventional Web-scripting environments like ASP and PHP.

   The framework combines existing technologies such as JavaScript with internal components
   like "View State" to bring persistent (inter-request) state to the inherently stateless Web
   environment

















Difference between ASP.NET and .NET Framework


.NET Framework
The .NET Framework is a software framework developed by Microsoft that runs primarily on Microsoft windows
                                                         OR
It is the collection of tools, technologies, languages and properties, which works together on multiple platforms for creating the applications.

 It includes a large library and provides language interoperability (each language can use code written in other languages) across several programming languages. Programs written for the .NET Framework execute in a software environment known as the Common Language Runtime



ASP.NET

ASP.NET is a server-side Web application framework designed for web development to produce dynamic web pages. It was developed by Microsoft to allow programmers to build dynamic web sites, web applications and web services. It is first released in January 2002 with version of 1.0 of the .net framework

                                                                    OR
It is the part of .NET Framework which uses the functionality of .NET Framework to create a dynamic website


QUICK REVISION of the Informatics Practices Examination

QUICK REVISION of the Informatics Practices Examination Data Types Every value belongs to a specific data type in Python. Data type iden...