i used to save my asp file as localhost/myweb/a.asp
it is working.i ahve downloaded the .netframework 1.1 to suport aspx extension and stored in wwroot/myweb directory.
the storing the file is same as asp right? is it different.
if it is the same then my a.asp is working why not a.aspx
Hi Aarya,
Here u have to consider the difference between ASP and ASP.Net
ASP is just a scritping language where as ASP.Net is a language.
ASP pages are ineterpreted at rumtime. But, ASP.Net pages are compiled into MSIL at the compile time. When the request hits that page then MS Jitter generates the machine specific code.
Here, in your code you are using the ASP.Net server control calander.So, the code must be compiled first before u run it.
Thanks,
Kedar