Re: How to Manager the ASP.NET Web Site Administration Tool
- From: "Kirk" <loki70@xxxxxxxxxxx>
- Date: 24 Jan 2007 08:20:29 -0800
I guess I should have dug a little deeper before posting. I found this
article, which was very helpful:
http://aspnet.4guysfromrolla.com/articles/121405-1.aspx
It details how to use the ASP.NET SQL Server Registration Tool to copy
[create] the required schema to the database of your choosing.
I changed my Web.config file to look at this [local SQL 2000]
connection by using this:
<connectionStrings>
<add name="MyDB" connectionString="Provider=SQLOLEDB.1; Integrated
Security=SSPI; Initial Catalog=aspnetdb; Data Source=(local)" />
</connectionStrings>
<roleManager enabled="true">
<providers>
<add connectionStringName="MyDB" name="CustomizedRoleProvider"
type="System.Web.Security.SqlRoleProvider" />
</providers>
</roleManager>
<membership>
<providers>
<add connectionStringName="MyDB"
name="CustomizedMembershipProvider"
type="System.Web.Security.SqlMembershipProvider" />
</providers>
</membership>
which seems to work EXCEPT I still can't see any data in the aspnetdb
tables (even though I have created multiple users & roles). From what
I now know, the Web Site Administration Tool was using a database it
automatically created in SQL Server 2005 Express, but I thiink I have
made everything "switch" to my local SQL 2000 server. Can anyone tell
me why I still cannot see this information in my local server?
Thank you in advance for any replies!
.
- Follow-Ups:
- Re: How to Manager the ASP.NET Web Site Administration Tool
- From: Juan T. Llibre
- Re: How to Manager the ASP.NET Web Site Administration Tool
- From: sloan
- Re: How to Manager the ASP.NET Web Site Administration Tool
- References:
- Prev by Date: Re: ASP.NET 2.0 Menu Control.
- Next by Date: Re: Overwriting viewstate
- Previous by thread: Re: How to Manager the ASP.NET Web Site Administration Tool
- Next by thread: Re: How to Manager the ASP.NET Web Site Administration Tool
- Index(es):
Relevant Pages
|