我正在使用asp.net表单身份验证,我需要能够为用户重置密码。
这是代码:
protected void resetPassword(string username)
{
MembershipUser user = Membership.GetUser(username);
if (user != null)
{
string newPassword = user.ResetPassword();
Membership.UpdateUser(user);
MailMessage message = new MailMessage("", user.Email, "change password", "your Password changed to: " + newPassword);
userManager.sendMail(message);
}
}
这是我的web.config文件:
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="ChartImageHandler" value="storage=file;timeout=20;dir=c:\TempImageFiles\;" />
</appSettings>
<system.webServer>
<handlers>
<remove name="ChartImageHandler" />
<add name="ChartImageHandler" preCondition="integratedMode" verb="GET,HEAD,POST"
path="ChartImg.axd" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</handlers>
</system.webServer>
<connectionStrings>
<add name="CRM_DBConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=C:\CRM\CRM\DAL_new\CRM_DB.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient"/>
<add name="CRM_DBConnectionString2" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=C:\CRM\DAL_new\CRM_DB.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient"/>
</connectionStrings>
<system.web>
<httpHandlers>
<add path="ChartImg.axd" verb="GET,HEAD,POST" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
validate="false" />
</httpHandlers>
<pages>
<controls>
<add tagPrefix="asp" namespace="System.Web.UI.DataVisualization.Charting"
assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</controls>
</pages>
<roleManager enabled="true"/>
<authentication mode="Forms">
<forms loginUrl="./login_page/Default.aspx" name=".ASPXFORMSAUTH" protection="All" timeout="43200" requireSSL="false" slidingExpiration="true" cookieless="UseCookies" enableCrossAppRedirects="false" />
</authentication>
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</assemblies>
</compilation>
</system.web>
<system.net>
<mailSettings>
<smtp from="donot.reply@gmail.com">
<network host="smtp.gmail.com" password="########" port="587" userName="######@gmail.com"/>
</smtp>
</mailSettings>
</system.net>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IBlServer" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None" realm=""/>
<message clientCredentialType="UserName" algorithmSuite="Default"/>
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:51109/Service1.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IBlServer" contract="CrmServiceReference.IBlServer" name="BasicHttpBinding_IBlServer"/>
</client>
</system.serviceModel>
</configuration>
行:string newPassword = user.ResetPassword();
抛出异常:
System.ArgumentNullException was unhandled by user code
Message=Value cannot be null.
Parameter name: passwordAnswer
我在这里和其他网站上经历了很多类似的问题,但我似乎无法做到正确。它最终会导致错误ResetPassword()
必须获取参数,或者在页面上查找检索用户帐户以进行其他操作的其他代码。
解决方案here会破坏我代码中的其他MembershipUser user = Membership.GetUser(username);
行。
如果我需要以下内容,那么在何处以及如何配置我的web.config:
1.用户可以使用安全Q&amp; A(这已经有效)重置他自己的密码
2.管理员可以重置用户的密码。用户将收到一封带有新密码的电子邮件。
提前致谢,
Summerbulb
答案 0 :(得分:2)
您是否提供了自定义会员资格设置?我没有在配置中看到它们。我也有同样的问题,最后放弃了密码问题/答案。你是否要记录密码和密码答案?如果使用哈希选项,如果不知道正确的答案,这将无法工作。如果你正在进行加密路由,那么你可以反思地调用SqlMembershipProvider类中的Decrypt方法来解密数据,这有点痛苦但是有效。
同样,您还有其他一些选择。关闭密码问题/答案,但自定义自己实现。成员资格框架不适用于sys管理员功能。其次,以明文形式手动存储答案(基本上是复制它)或使用您的算法加密,然后解密。
密码问题和答案都是从配置驱动的,所以最后,您还可以考虑建立两个会员提供商,第二个提出要求,并且要求为假:
<add name="AdminProvider" type="<point to SQL membership" requiresQuestionAndAnswer="false" />
在管理员界面中,执行:
Membership.Providers[1].ResetPassword();
然后它起作用,因为它的配置状态不需要问答。
如果您需要更多信息,请与我们联系。
答案 1 :(得分:1)
第2部分需要什么(管理员可以重置用户的密码。用户将收到带有新密码的电子邮件。)你可以在这里看到
http://www.ezineasp.net/post/ASP-Net-2-0-Password-Recovery-Control-With-Email.aspx
对我而言,它有效。如果用户忘记了密码,他会收到带有新密码的电子邮件。只需将enablePasswordReset设置为true即可。