Dee
Dee

Reputation: 1403

Do I need to Install .Net 1.1 Framework on server to host Web app in Visual Studio 2003?

Do I need to Install .Net 1.1 Framework on server to host Web app in Visual Studio 2003? I have all .net dlls in GAC.

Upvotes: 0

Views: 176

Answers (1)

TomTom
TomTom

Reputation: 62093

Yes, the framework needs to be installed. You also may need (if installed post IIS) to register them with IIS... For that go to the framework directory in c:\winnt... and run "aspnet_regiis -i", which will add the hooks to IIS.

No, you can not install ASp.NET 2003 - there is no 2003 ;) This would be... hm... ASP.NET 1.1 or 1.0, which is not supported on modern servers properly.

Rather upgrade to 2008 / .NET 3.5sp1 upward.

Upvotes: 1

Related Questions