ASP.NET Hosting

  • Thread starter Thread starter Terry
  • Start date Start date
T

Terry

To host an ASP.NET app, can I simply install the .NET Framework on my server
(W2K Advanced Server), or do I have to upgrade to 2003?

Thanks
 
Hi,

Just install the .NET Framework.
You will also need to manually create a bin folder in your web root folder
as well as have a copy of web.config (the default one created by vs.net will
suffice). The alternative is to create a virtual directory. For instance if
you create a Virtual directory: D:/inetpub/wwwroot/home/ where it points to
a folder containing your ASP.NET project with a bin folder and a web.comfig
file you should't need to copy the home.dll your project generated in the
web root folder but rather in your /home/bin/ folder. However if you do not
create a virtual directory you will need to copy the home.dll into your web
root folder.

Hope this help,

Yama

To answer the previous question of web hosting I use:
http://yamabiz.ehostingbiz.net/.
 
Back
Top