if (Request.QueryString["Username"] != null)
{
Login1.UserName =Request.QueryString["Username"];
Login1.Password = Request.QueryString["Password"];
if (FormsAuthentication.Authenticate(Login1.UserName, Login1.Password))
{
FormsAuthentication.RedirectFromLoginPage(Login1.UserName, true);
}
}
else{
if (FormsAuthentication.Authenticate(Login1.UserName, Login1.Password))
{
FormsAuthentication.RedirectFromLoginPage(Login1.UserName, true);
}
}
如何傳遞的查詢字符串密碼進入Login1.Password.I我使用FormsAuthentication梅索德爲login.But Login1.Password亙古不接受querystring.Is Login1值。密碼給類型錯誤?請幫助如何從查詢字符串傳遞價值asp.net登錄控制
Login1.P類型是什麼密碼 –
我也不知道Login1.But的類型,它給錯誤Password.Property或索引器System.Web.UI.WebControls.Login.Password不能分配給它是隻讀的。 –
okk ...那麼它必須在Authenticate方法中作爲參數傳遞...檢查Damith答案 –