我正在嘗試編寫一個簡單的Gui來生成一個隨機密碼。 我想使用的代碼是:成員名稱在當前上下文中不存在
using System.Web.Security;
Password_txtBx.Text = Membership.GeneratePassword(12, 1);
我收到錯誤:「名‘會員’不能在當前的背景下存在」
我有改變了代碼這樣:
Password_txtBx.Text = System.Web.Security.Membership.GeneratePassword(12, 1);
我得到的錯誤消息是:「名稱空間'System.Web'中不存在類型或命名空間'SecurityMembership'(您是否缺少程序集引用?」)
我引用了System.Web.Security在上面的兩個例子中。有什麼方法可以解決我的問題嗎?
您使用的是.NET 1.x嗎? Membership類是在.NET 2.0中引入的。 http://msdn.microsoft.com/en-us/library/system.web.security.membership.aspx – BACON 2012-03-10 05:26:32
@BACON .NET Framework 4 – ajaustin12 2012-03-10 05:32:37