The process account used to run ASP.NET must have read access to the IIS metabase (e.g. IIS://servername/W3SVC)
Tech-Today

The process account used to run ASP.NET must have read access to the IIS metabase (e.g. IIS://servername/W3SVC)


I encountered this problem when I install the IIS after the framework. You need to manually register the IIS.

http://msdn.microsoft.com/en-us/library/k6h9cz8h(VS.80).aspx

Usually:

C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\aspnet_regiis.exe -i


And also set the user account in COM component to INTERACTIVE

And that would do the trick.




- The Program Can't Start Because Api-ms-win-crt-runtime-l1-1-0.dll Is Missing
This problem is often encountered when running Microsoft Office, Adobe Products or even Apache server. Base on this entry from stack overflow: http://stackoverflow.com/questions/33265663/api-ms-win-crt-runtime-l1-1-0-dll-is-missing-when-opening-microsoft-office-file...

- How To Deploy Mvc3 Powered Website To Iis
After developing a website powered by MVC3 the next thing is deploying it on server. Our assumption is that the server has dotnet3.5/4.0 installed. Server Setup: 1.) Windows 2003 SP2 2.) Download and install dotnet 3.5/4.0 3.) Download and install MVC3...

- Create Mssql Aspnet Database
I always forget how to create an aspnet database so I'm noting it here: Just execute: c:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regsql.exe And just follow the steps. Next, next, next. Note: I'm using .net 2.0, change directory depending...

- Asp Server Application Unavailable
If you ever encounter this error while setting up iis on your local machine or a virtual directory in the Internet Information Services and you look into the the Event Viewer and see the Application Logs: "Server Application Unavailable The web application...

- Create Auto Increment Primary Key On Sql Server Compact Database
Just examine this script: CREATE TABLE user ( user_id INT IDENTITY(1, 1) NOT NULL PRIMARY KEY, user_name NVARCHAR(50) ) Regarding IDENTITY(1, 1) and SQLCE Data Type, refer to the following article: http://www.codeproject.com/KB/mobile/DBApplicationsForPocketPC.aspx...



Tech-Today








.