Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Simple ASP.Net Server issue

Status
Not open for further replies.

phbrady

Programmer
Oct 17, 2003
41
US
OK,

I have installed the .Net 1.1 framework on the server. I have stopped and restarted IIS. I have started the ASP.Net State Service. This is all I remember doing the last time I set up .Net on a server, but the server is still not processing any of the scripting, just the basic HTML on my aspx pages. When I do a "view source" on the aspx page, I get all the actual source code. Can someone point me to a good, basic server setup page?

Thanks,
P
 
I'll bet you just need to register asp.net with IIS. Find the executable called aspnet_regiis.exe. (mine was at "C:\WINNT\Microsoft.NET\Framework\v1.1.4322")

Run it from the command prompt using the "i" switch:
Code:
aspnet_regiis /i

HTH

David
[pipe]
 
That did it! Thanks!! I don't know why I didn't have to do that the last time I set up .Net, but oh well...
 
That can happen if the .net framework is installed while IIS is not running or not installed.

A quick way to check is to open the properties of Default Web Site in IIS, click the Configuration button on the Home Directory tab, and make sure .aspx, .ascx, etc are listed in the mappings and mapped to the aspnet_isapi.dll.


Glad it worked.





David
[pipe]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top