Configuring IIS

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

Guest

Should i configure the IIS to host ASP.net 2.0 web application or not??
if yes How?
notice that i have Windows XP SP2 and i have VS2005 beta2 running on it.
thanks for advanced help....
 
Hi,

IIRC the VS2005 install does it for you, in the weird case it did not you
can use aspnet_regiis.exe to do it.


cheers,
 
Should i configure the IIS to host ASP.net 2.0 web application or not??

That is completely your decision. You don't need IIS to build ASP.NET 2.0
apps with Visual Studio 2005 as it has a built in ASP.NET 2.0 server.
if yes How?

Open a command prompt and go to your .NET 2.0 directory (usually something
like "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50215"). Then run the following
command:

"aspnet_regiis.exe -i";


Hope this helps.

--
Brian Delahunty
Ireland

http://briandela.com/blog

INDA SouthEast - http://southeast.developers.ie/ - The .NET usergroup I
started in the southeast of Ireland.
 
Back
Top