Question: What are the differences between ASP and ASP.NET and is ASP.NET backward cmpatible to ASP.
Answer: ASP page is non compiled version ie the ASP compiler (interpreter) executes each line of ASP page when the request for a particular page is made...
Where as ASP.NET page is the pre-compiled version. When we compile the ASP.NET page, the .NET compiler compiles the ASP.NET page to the UI assemply.
Question:
What are the differences between ASP and ASP.NET and is ASP.NET backward cmpatible to ASP.
Answer:
ASP page is non compiled version ie the ASP compiler (interpreter) executes each line of ASP page when the request for a particular page is made...
Where as ASP.NET page is the pre-compiled version. When we compile the ASP.NET page, the .NET compiler compiles the ASP.NET page to the UI assemply. Source: CoolInterview.com
If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
There should not be any Spelling Mistakes.
There should not be any Gramatical Errors.
Answers must not contain any bad words.
Answers should not be the repeat of same answer, already approved.
Answer should be complete in itself.
Related Questions
View Answer
How to display a word document (.doc) file in HTML page using ASP?
<SCRIPT LANGUAGE="VBScript" RUNAT=Server> a = 1 </SCRIPT> <SCRIPT LANGUAGE="VBScript"> a = 2 </SCRIPT> <% Response.Write a %> In the sample code shown above, what will be written to the screen?