473,406 Members | 2,745 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Membership element in web.config

I have the following Membership element in my web.config file. When I run
the create user wizard to test it out, it doesn't seem to work. The create
user control doesn't return any errors and there is nothing put inside the
tables in the database. Any ideas what might be going wrong? I also noticed
that intellisense stopped working on me after I got done adding the provider
type. None of the attributes were listed except name and type. Here is the
Membership block:

<membership defaultProvider="AdminSQLMembershipProvider">

<providers>

<clear/>

<add name="AdminSQLMembershipProvider"

type="System.Web.Security.SqlMembershipProvider"

connectionStringName="EternityRecordsConnectionStr ing"

enablePasswordRetrieval="false"

enablePasswordReset="true"

requiresQuestionAndAnswer="true"

applicationName="Admin"

description="Admin section for Eternity Records website."

requiresUniqueEmail="true"

passwordFormat="Hashed"

maxInvalidPasswordAttempts="3"

minRequiredPasswordLength="6"

minRequiredNonalphanumericCharacters="2"

passwordAttemptWindow="10"/>

</providers>

</membership >
Nov 6 '08 #1
4 2053
re:
!When I run the create user wizard to test it out, it doesn't seem to work.

Did you modify the wizard to accomodate your custom data ?

See this article by Scott Guthrie :
http://weblogs.asp.net/scottgu/archi...formation.aspx


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
"Andy B" <a_*****@sbcglobal.netwrote in message news:%2***************@TK2MSFTNGP03.phx.gbl...
>I have the following Membership element in my web.config file. When I run the create user wizard to test it out, it
doesn't seem to work. The create user control doesn't return any errors and there is nothing put inside the tables in
the database. Any ideas what might be going wrong? I also noticed that intellisense stopped working on me after I got
done adding the provider type. None of the attributes were listed except name and type. Here is the Membership block:

<membership defaultProvider="AdminSQLMembershipProvider">

<providers>

<clear/>

<add name="AdminSQLMembershipProvider"

type="System.Web.Security.SqlMembershipProvider"

connectionStringName="EternityRecordsConnectionStr ing"

enablePasswordRetrieval="false"

enablePasswordReset="true"

requiresQuestionAndAnswer="true"

applicationName="Admin"

description="Admin section for Eternity Records website."

requiresUniqueEmail="true"

passwordFormat="Hashed"

maxInvalidPasswordAttempts="3"

minRequiredPasswordLength="6"

minRequiredNonalphanumericCharacters="2"

passwordAttemptWindow="10"/>

</providers>

</membership >


Nov 6 '08 #2
Not quite what I am looking for I don't think. My problem seems to be that
the membership provider in web.config isn't being seen for some reason. How
would I get it to work?
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:en**************@TK2MSFTNGP03.phx.gbl...
re:
!When I run the create user wizard to test it out, it doesn't seem to
work.

Did you modify the wizard to accomodate your custom data ?

See this article by Scott Guthrie :
http://weblogs.asp.net/scottgu/archi...formation.aspx


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
"Andy B" <a_*****@sbcglobal.netwrote in message
news:%2***************@TK2MSFTNGP03.phx.gbl...
>>I have the following Membership element in my web.config file. When I run
the create user wizard to test it out, it doesn't seem to work. The create
user control doesn't return any errors and there is nothing put inside the
tables in the database. Any ideas what might be going wrong? I also
noticed that intellisense stopped working on me after I got done adding
the provider type. None of the attributes were listed except name and
type. Here is the Membership block:

<membership defaultProvider="AdminSQLMembershipProvider">

<providers>

<clear/>

<add name="AdminSQLMembershipProvider"

type="System.Web.Security.SqlMembershipProvider "

connectionStringName="EternityRecordsConnectionSt ring"

enablePasswordRetrieval="false"

enablePasswordReset="true"

requiresQuestionAndAnswer="true"

applicationName="Admin"

description="Admin section for Eternity Records website."

requiresUniqueEmail="true"

passwordFormat="Hashed"

maxInvalidPasswordAttempts="3"

minRequiredPasswordLength="6"

minRequiredNonalphanumericCharacters="2"

passwordAttemptWindow="10"/>

</providers>

</membership >



Nov 6 '08 #3
Can you break in the code and test the type of the Membership?

--

Joe Fawcett (MVP - XML)

http://joe.fawcett.name

"Andy B" <a_*****@sbcglobal.netwrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
Not quite what I am looking for I don't think. My problem seems to be that
the membership provider in web.config isn't being seen for some reason.
How would I get it to work?
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:en**************@TK2MSFTNGP03.phx.gbl...
>re:
!When I run the create user wizard to test it out, it doesn't seem to
work.

Did you modify the wizard to accomodate your custom data ?

See this article by Scott Guthrie :
http://weblogs.asp.net/scottgu/archi...formation.aspx


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
"Andy B" <a_*****@sbcglobal.netwrote in message
news:%2***************@TK2MSFTNGP03.phx.gbl...
>>>I have the following Membership element in my web.config file. When I run
the create user wizard to test it out, it doesn't seem to work. The
create user control doesn't return any errors and there is nothing put
inside the tables in the database. Any ideas what might be going wrong? I
also noticed that intellisense stopped working on me after I got done
adding the provider type. None of the attributes were listed except name
and type. Here is the Membership block:

<membership defaultProvider="AdminSQLMembershipProvider">

<providers>

<clear/>

<add name="AdminSQLMembershipProvider"

type="System.Web.Security.SqlMembershipProvide r"

connectionStringName="EternityRecordsConnectionS tring"

enablePasswordRetrieval="false"

enablePasswordReset="true"

requiresQuestionAndAnswer="true"

applicationName="Admin"

description="Admin section for Eternity Records website."

requiresUniqueEmail="true"

passwordFormat="Hashed"

maxInvalidPasswordAttempts="3"

minRequiredPasswordLength="6"

minRequiredNonalphanumericCharacters="2"

passwordAttemptWindow="10"/>

</providers>

</membership >




Nov 6 '08 #4
How do you do that with the default SqlMembershipProvider?

"Joe Fawcett" <jo********@newsgroup.nospamwrote in message
news:Os**************@TK2MSFTNGP06.phx.gbl...
Can you break in the code and test the type of the Membership?

--

Joe Fawcett (MVP - XML)

http://joe.fawcett.name

"Andy B" <a_*****@sbcglobal.netwrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
>Not quite what I am looking for I don't think. My problem seems to be
that the membership provider in web.config isn't being seen for some
reason. How would I get it to work?
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:en**************@TK2MSFTNGP03.phx.gbl...
>>re:
!When I run the create user wizard to test it out, it doesn't seem to
work.

Did you modify the wizard to accomodate your custom data ?

See this article by Scott Guthrie :
http://weblogs.asp.net/scottgu/archi...formation.aspx


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
"Andy B" <a_*****@sbcglobal.netwrote in message
news:%2***************@TK2MSFTNGP03.phx.gbl...
I have the following Membership element in my web.config file. When I
run the create user wizard to test it out, it doesn't seem to work. The
create user control doesn't return any errors and there is nothing put
inside the tables in the database. Any ideas what might be going wrong?
I also noticed that intellisense stopped working on me after I got done
adding the provider type. None of the attributes were listed except name
and type. Here is the Membership block:

<membership defaultProvider="AdminSQLMembershipProvider">

<providers>

<clear/>

<add name="AdminSQLMembershipProvider"

type="System.Web.Security.SqlMembershipProvider "

connectionStringName="EternityRecordsConnection String"

enablePasswordRetrieval="false"

enablePasswordReset="true"

requiresQuestionAndAnswer="true"

applicationName="Admin"

description="Admin section for Eternity Records website."

requiresUniqueEmail="true"

passwordFormat="Hashed"

maxInvalidPasswordAttempts="3"

minRequiredPasswordLength="6"

minRequiredNonalphanumericCharacters="2"

passwordAttemptWindow="10"/>

</providers>

</membership >




Nov 6 '08 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: ad | last post by:
I have create a custom membership provider. The common usage of custom membership is set it as default Membership Provider win web.config, and use login controls with it. How can I use custom...
9
by: Paul Keegstra | last post by:
Hi, I am currently working on an asp.net 2.0 web site that is a replacement of a classic asp web site. The current web site uses a Commerce Server 2002 database for storing user information. ...
1
by: Andy | last post by:
Hi, I was wondering if someone could advise on if the following is possible. I have one website that is available to the public using Forms authentication and the Membership class, it...
4
by: Pony Tsui | last post by:
I was install the starter kits CLUB, and created a CLUB WEB SITE, this application use the MemberInfo table in club.mdf to store the membership'data, but i can not find out where to define or...
0
by: Anonieko | last post by:
A lot of times, web hostings for ASPNET 2.0 will offer only MS Access DB for database for basic plan, a question often asked is how can I use the membership services, role, web parts services, etc ...
2
by: Allan Ebdrup | last post by:
I'm using VS Team Suite 2005 and dotNet 2.0, my webserver is running dotNet 2.0 I trying to set up a membership provider using a MSSQL 2000 database. I've run the aspnet_regsql.exe tool and have...
1
by: =?Utf-8?B?Tmljaw==?= | last post by:
Hi all, i am new to membership, what i am trying to do is that. my asp pages data are from server 1, and the membership data are from server 2. so can i write do different connection string in...
1
by: Ben | last post by:
Hi, When an anonymous user has created an new account (with the CreateUserWizard control), i want to let asp.net generate a password and to send it to the address of the email provided by the...
4
by: Ben | last post by:
Hi, i have already posted a more or less similar thread but it's gone unsolved with the flow of the other threads .. When an anonymous user has created an new account (with the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.