config web server

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All!
this is my first time that i write web application and i installed the iis
after the development environment . the problem is that the .net environment
doesn't recognize the web server.someone told me that i have to define that
in the registry or install again the environment and i won't do it.
someone can solve me that problem
thank's alot
guy
 
guy,

Assuming that .NET was installed after IIS was installed (I assume you
are using IIS), the only thing that you have to do is create the application
in the IIS administration console (the virtual directory, and the mapping).

Once you do that, you just have to copy your application (aspx pages,
directories, compiled assemblies, if any) to the directory mapped to the
virtual directory, and it should work.

Hope this helps.
 
Hi All!
this is my first time that i write web application and i installed the iis
after the development environment . the problem is that the .net environment
doesn't recognize the web server.someone told me that i have to define that
in the registry or install again the environment and i won't do it.
someone can solve me that problem
thank's alot
guy

aspnet_regiis -i
(from the Visual Studio command prompt, otherwise Start > Run > cmd >
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe -i
 
Back
Top