User does not have permission to perform this action.
Description:
An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.SqlClient.SqlException: User does not have permission to perform this action.
Source Error:
Line 205: using (SqlCommand command = new SqlCommand("GetNonEmptyAlbums", connection)) { Line 206: command.CommandType = CommandType.StoredProcedure; Line 207: connection.Open(); Line 208: List<Album> list = new List<Album>(); Line 209: using (SqlDataReader reader = command.ExecuteReader()) {
AFAIK most online hosts do not directly support sqlExpress databases and XCopy deployment.
You will probably need to export the express database then reimport it to a WH4L MS SQL2005 DB.
The following are the databases scripts for the original version
mumfie2003
Participant
1198 Points
242 Posts
Re: Error - User does not have permission to perform this action.
Mar 01, 2006 05:38 PM|LINK
AFAIK most online hosts do not directly support sqlExpress databases and XCopy deployment.
You will probably need to export the express database then reimport it to a WH4L MS SQL2005 DB.
The following are the databases scripts for the original version
http://www.microsoft.com/downloads/details.aspx?FamilyId=2EE85ED4-7613-47E2-8375-17222B150E4F&displaylang=en
http://www.colin-munford.me.uk