ReInstallation of IIS server causes problem

liunx

Guest
Hi frnds
I am a quite new to ASP.NET . My problem is that I installed VS.NET on win xp
on which IIS was already installed. And everything was going fine. All asp projects were runnig .But when I reinstalled IIS . All my old asp.net projects results in an Error of "403 Access Denied" during loading, however all the projects that I developed after installing IIS are running fine. How can I use my old projects. If any one has any idea plz reply .thanxYou have to install the .net framework after you install iis because the .net formwork will detect if iis is running and configure iis to run asp.net.Yeah, you are supposed to install IIS and then the .Net Framework. But, if you didn't, you don't have to reinstall them again. Just logon as administrator, open a cmd window (start->run->cmd), and enter this:

"%windir%\Microsoft.NET\Framework\version\aspnet_regiis.exe" -i

That will register the .Net Framework with IIS and you are all set.
 
Back
Top