Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8530565
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T09:16:39+00:00 2026-06-11T09:16:39+00:00

Having a code-blind moment. ASP.NET 4.0. Web.config: <?xml version=1.0?> <configuration> <system.web> <authentication mode=Forms> <forms

  • 0

Having a code-blind moment.

ASP.NET 4.0.

Web.config:

<?xml version="1.0"?>
<configuration>
  <system.web>
    <authentication mode="Forms">
      <forms name="DataViewer" loginUrl="login.aspx">
        <credentials passwordFormat="Clear">
          <user name="devuser" password="test" />
        </credentials>
      </forms>
    </authentication>
    <authorization>
      <deny users="?" />
    </authorization>
  </system.web>

and a login control:

  <asp:Login ID="login" runat="server" />

If I enter a username and password, and click Login, it hangs.

If I break, I can see in the call stack that login.AuthenticateUsingMembershipProvider() is in the middle of calling SqlMembershipProvider.ValidateUser(). There is no database defined or involved in this project at all, and I haven’t specified that SqlMembershipProvider should be used.

So my question is, what membership provider should I use to get ASP.NET to use the usernames and passwords in the <credentials> element of web.config?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T09:16:41+00:00Added an answer on June 11, 2026 at 9:16 am

    I’m amazed that considering how the framework designers went to the trouble of defining a <credentials /> element that they didn’t implement any code to consume it.

    I found a sort-of-working implementation of this here which I have fixed up and included below. All other members of MembershipProvider throw NotImplementedException.

    using System.Configuration;
    using System.Web.Configuration;
    using System.Web.Security;
    
    public class WebConfigMembershipProvider : MembershipProvider
    {
        private FormsAuthenticationUserCollection _users = null;
        private FormsAuthPasswordFormat _passwordFormat;
    
        public override void Initialize(string name,
          System.Collections.Specialized.NameValueCollection config)
        {
            base.Initialize(name, config);
            _passwordFormat = getPasswordFormat();
        }
    
        public override bool ValidateUser(string username, string password)
        {
            var user = getUsers()[username];
            if (user == null) return false;
    
            if (_passwordFormat == FormsAuthPasswordFormat.Clear)
            {
                if (user.Password == password)
                {
                    return true;
                }
            }
            else
            {
                if (user.Password == FormsAuthentication.HashPasswordForStoringInConfigFile(password,
                    _passwordFormat.ToString()))
                {
                    return true;
                }
            }
    
            return false;
        }
    
        protected FormsAuthenticationUserCollection getUsers()
        {
            if (_users == null)
            {
                AuthenticationSection section = getAuthenticationSection();
                FormsAuthenticationCredentials creds = section.Forms.Credentials;
                _users = section.Forms.Credentials.Users;
            }
            return _users;
        }
    
        protected AuthenticationSection getAuthenticationSection()
        {
            Configuration config = WebConfigurationManager.OpenWebConfiguration("~");
            return (AuthenticationSection)config.GetSection("system.web/authentication");
        }
    
        protected FormsAuthPasswordFormat getPasswordFormat()
        {
            return getAuthenticationSection().Forms.Credentials.PasswordFormat;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using vb.net. I am having below code in vb.net <tr> <td >
I am using vb.net code in which I am having a gridview control. Please
Having code: struct B { int* a; B(int value):a(new int(value)) { } B():a(nullptr){} B(const
Having code: Date::Date(const char* day, const char* month, const char* year):is_leap__(false) { my_day_ =
Having code: int** a = new int*[2]; a[0] = new int(1); a[1] = new
I'm often having code written as follows try: self.title = item.title().content.string except AttributeError, e:
I am having code NSString *cellValue1 = [products1 objectAtIndex:indexPath.row]; when i try to print
I'm using VS2010 Ultimate. Having code: //file IntSet.h #include stdafx.h #pragma once /*Class representing
Having php code: function getChildren($parent_id = 0) { .... return $SomeChildrenArray; } And Smarty
Having this code: using (BinaryWriter writer = new BinaryWriter(File.Open(ProjectPath, FileMode.Create))) { //save something here

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.