我把一個登錄控制,它不會讓我在網站內。 (我甚至試圖使用登錄控制檢索和重置密碼,仍然不會工作)。asp.net登錄控制不起作用
這是我的web.config文件的一部分。昨天,我通過更改添加標籤中的屬性來解決該問題..但今天,問題重演。
http://go.microsoft.com/fwlink/?LinkId=169433 - >
<add name="YourGuruDB" connectionString="Data Source=DIMA-00AA1DA557;Initial Catalog=model;Integrated Security=True"/>
<add name="modelConnectionString" connectionString="Data Source=DIMA-00AA1DA557;Initial Catalog=model;Integrated Security=True" providerName="System.Data.SqlClient"/>
<add name="LocalSqlServer2" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename='D:\Documents and Settings\Dima\My Documents\Visual Studio 2010\WebSites\WebSite10\App_Data\ASPNETDB.MDF';Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient"/>
</connectionStrings>
<system.web>
<membership defaultProvider="MyMembershipProvider">
<providers>
<clear/>
<add
name="MyMembershipProvider"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="LocalSqlServer2"
minRequiredPasswordLength="2"
minRequiredNonalphanumericCharacters="0"
maxInvalidPasswordAttempts="1000"
passwordAttemptWindow="1000"
/>
</providers>
</membership>
<roleManager enabled="true" />
<authentication mode="Forms">
<forms name="MyAppCookie"
loginUrl="~/Registration.aspx"
protection="All"
timeout="30" path="/" />
</authentication>
小心你的話,當我讀到你的標題時,我想到了雞小雞,在他宣佈「天空正在下降」之後,恐慌隨之而來......你的配置出了問題......什麼錯誤?你的連接字符串是否正確? – Nix 2011-05-25 15:09:36
你會得到什麼錯誤? – 2011-05-25 15:09:41
我沒有得到任何錯誤,我得到的是,失敗登錄,每次我嘗試通過登錄控制登錄。但我能夠檢索密碼。不要登錄!!我認爲配置文件中的一個屬性阻止我接受密碼。 – 2011-05-25 15:13:31