asp.net newbie question

  • Thread starter Thread starter romy
  • Start date Start date
R

romy

Hi

Starting to study asp.net....

I'm trying to run some .aspx file (For testing)
http://localhost/page.aspx

For some reason the browser doesn't compile and run the script, but just
display as text file.
if page.aspx is blank then filedownload window pops.
(ofcourse the .netframework is installed)

In other words, How do I test a simple aspx file ?

thanks
 
Hi

Starting to study asp.net....

I'm trying to run some .aspx file (For testing)
http://localhost/page.aspx

For some reason the browser doesn't compile and run the script, but just
display as text file.
if page.aspx is blank then filedownload window pops.
(ofcourse the .netframework is installed)

In other words, How do I test a simple aspx file ?

thanks

Try opening a command line, and cd to where the framework was installed
(usually somewhere like \Windows\Microsoft.NET\Framework\v1.1.4322). Once
there, run the following command

aspnet_regiis -i

this will reinstall/setup ASP.NET on your machine. Then try your file
again in the browser.
 
Back
Top