• Welcome to Web Hosting Community Forum for Webmasters - Web hosting Forum.
 

Recommended Providers

Fully Managed WordPress Hosting
lc_banner_leadgen_3
Fully Managed WordPress Hosting

WordPress Theme

Divi WordPress Theme
WPZOOM

Forum Membership

Forum Membership

1.Illustrate the Basic Difference Between ASP.NET with Classic ASP?

Started by magwebonline, January 09, 2013, 01:37:56 PM

magwebonline

Hi,

Iam New Web and Software Development. Can Anyone Explain me the
Basic Difference Between ASP.NET with Classic ASP?

Thanks In Advance.

littonbarney

Asp.net runs faster as all the processed are governed by the ASP.NET runtime, making availability for any request if any process stops, a new process gets created and thereby the requests are handled immediately. Whereas in classic ASP the process has to be restarted as it runs under the IIS spaces which can even crash. Asp Classic works only in java script and visual basic script platform where as asp.net supports all the dot net languages like C#, J# VB.net etc to make the web based applications more interactive and stable. ASP.NET is completely server side technology.

Deping



Difference Between Classic ASP and ASP.net..

> Asp use scripting lanuage Jscript or VBscript and .Net using complied lauages.
> Asp have mixer layout ,it combine script code and HTML Files.and .Net there is sepreat of code and HTML
    so, its much easy for programmer and designer.
> In Classic Asp ,no real state management ,if you want to indentfy user you needs to implements additional code.
In .Net provides solutions for session,application state management.
> Asp update files only when server is down/stopped, .Net updates the files when server is running clients are conneted.
> Asp have limited Develpment and Debugging tools.and .Net have more framework tools and also GUI environment for user.
> .Net is much scalable than classic Asp.
> In Asp you have to bulid a lot of functionality yourself,where in .Net the functionality is already there.

sankalppatil

Asp.net runs faster as all the processed are governed by the ASP.NET runtime, making available for any request if any process stops, a new process gets created and thereby the requests are handled immediately.