|
Subject:
|
problem in installing websetup
|
|
Posted By:
|
shupiR
|
Post Date:
|
1/6/2006 12:16:36 AM
|
Hi all, I have made a web application in asp.net.I have installed .net framework 1.1 on another system where i want to run my application.Everything is fine, i have done all things successfully but when i give the URL http://localhost/websetup1/home.aspx then i just get the text of the labels written in the upper left corner of the web page.thats it.i get no textboxes,no links, nothing...only text..... Can anybody help why this is so??? Thanx Shupi
|
|
Reply By:
|
planoie
|
Reply Date:
|
1/6/2006 8:55:22 AM
|
Sounds like the ASP.NET files aren't being handled by the ASPNET worker process as they should due to missing mappings. Try running this (change your windows directory if necessary):
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe /i
-Peter
|
|
Reply By:
|
shupiR
|
Reply Date:
|
1/7/2006 4:42:08 AM
|
I got the solution
1. Locate machine.config (try C:\WINNT\Microsoft.NET\Framework\v1.0.3705\CONFIG). 2. Open machine.config in Notepad or other text editor. 3. Search for this string: "<processModel" 4. In the processModel element, change userName="machine" to userName="SYSTEM" 5. Save the file and exit. 6. In the Run box (Start > Run) execute this command: iisreset.exe .
|