Difference Between XML and ASP.Net???

  • Thread starter Thread starter scootermonkey
  • Start date Start date
S

scootermonkey

I am a novice, currently learning C# and Visual Studio.Net. Can someone
boil down for me please what the difference is between XML and ASP.Net in a
short paragraph?

Thanks,
Scott
 
XML and ASP.NET have no relation to each other. That is like comparing
apples and oranges.

ASP.NET is a execution environment that processes ASP.NET script and code,
generates HTML, and delivers it to the browser. ASP.NET can be coded in any
language that supports the CRL.

XML is nothing more than a data storage format in which tags and attributes
have specific meaning as defined by the creator of the structure. XML
allows for data interchange between disconnected system, assuming they
recognize the format of the XML.

ASP.NET, however, does use XML within the framework.
 
Back
Top