What are the difference between ASP and ASP.Net?
Answer Posted / neelima
Difference between ASP and ASP.NET
------------------------------------------------------------
--------------------
Author: Tony John
HP GDIC
------------------------------------------------------------
--------------------
This article explains what is ASP.NET and how different it
is from ASP.NET
ASP stands for Active Server Pages. ASP.NET is the next
generation of ASP. After the introduction of ASP.NET, old
ASP is called 'Classic ASP'.
Classic ASP uses vb script for server side coding. Vb
Script is not supported any more in ASP.NET. Instead,
ASP.NET supports more languages including C#, VB.NET, J#
etc. VB.NET is very similar to vb script, so it should be
easy for old Visual Basic or ASP programmers to switch to
VB.NET and ASP.NET
VB Script is a simple scripting language, where as VB.NET
or C# are modern, very powerfull, object oriented
programming languages. Just for that reason, you will be
able to write much more robust and reliable programs in
ASP.NET compared to ASP.
In classic ASP, there was no server controls. You have to
write all html tags manually. ASP.NET offers a very rich
set of controls called Server Controls and Html Controls.
It is very easy to drag and drop any controls to a web
form. The VS.NET will automatically write the required HTML
tags automatically for you.
ASP is interpreted, ASP.NET is compiled
| Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
Explain diff. Between friend and protected friend?
What is sql data source control in asp.net?
Can you explain the basic use of dataview?
In a page I have gridview with options of select and delete using hyperlink when I am selecting any one of then it has to open another page how can it?
How can we identify that the Page is Post Back?
What is viewstate in asp net with example?
What are the different method of navigation in asp.net?
Describe the diffeerence between inline and code behind?
What role “#&&” plays in a querysting?
What is the Difference between MVC And MVP design pattrens
Explain global assembly cache.
Define asp.net caching?
What are the disadvantages of view state?
Hi this is the coding for adding data in to an xml table
i want the coding for update and delete
Try
Dim emp_xml_doc As New XmlDocument
If
System.IO.File.Exists(Server.MapPath("emp.xml")) Then
emp_xml_doc.Load(Server.MapPath("emp.xml"))
Dim myrow_element As XmlElement
myrow_element =
emp_xml_doc.CreateElement("EmpDetails")
Dim str As String
str = "
How dataadapter.fill works?