.NET files won't work after Windows reinstall

windows

Guest
I have recently reinstalled Windows (XP Pro) and put my ASP.NET files back in the wwwroot folder of Inetpub, (IIS 5.1) these files were working before I reinstalled Windows. They no longer work. I get a message in the status bar saying "Done but with errors on the page". This happens with both VB.NET and C#. Internet Explorer shows nothing, just a white IE screen.

When I right click and select View Source, I am getting all the code including the server side stuff. All my traditional ASP files still work. The .NET Framework SDK has been installed. Can anyone please help me with what is going on here.Those 'errors in the page' are not asp.net errors. They are client side browser errors. The reason your server side code would be in the source is because IIS is not setup properly. Make sure you install iis before the .net framework so the .net framwork can configure it's self for IIS. If you did the reverse you must uninstall both and reinstall them, unless you want to copy over files and be annoyed. Also make sure your default file is default.aspx or index.aspx or whatever you want it to be, not index.asp or index.html, if it has to go down the list it gets all messed up for some reason.
 
Back
Top