Create mssql aspnet database
Tech-Today

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 on the .net framework you're using.




- The 'system.web.security.sqlmembershipprovider' Requires A Database Schema Compatible With Schema Version '1'.
Normally you will encounter this issue if you generate an sql script of an aspnet_database without including the data. To resolve this you have 2 options: 1.) Execute c:\windows\microsoft.net\framework\v4.xxx\aspnet_regsql.exe, and just follow through....

- 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...

- Setting Mssql Server 2005 Table 2000 Compatible
Recently I was developing a c# application that uses sqlserver2005 database (express edition) setup on my laptop which has win7 os. The problem is the public server where I will deploy the application is only running a mssql server 2000 database. My application...

- 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...

- 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 ...



Tech-Today








.