您好我想将System.Web.UI.HtmlControls.HtmlInputText值转换为字符串。
实际上我正在使用身份验证功能,其中我正在使用 HTML 控件:
private void Authenticate_User(System.Web.UI.HtmlControls.HtmlInputText username, System.Web.UI.HtmlControls.HtmlInputText password)
{
//-- doing some code here & Save credentials into cookies.
}
*现在我在 page_load 上检查上述功能:*
protected void Page_Load(object sender, EventArgs e)
{
string userid = Request.Cookies["UserDetails"]["UserName"].ToString();
string pass = Request.Cookies["UserDetails"]["Password"].ToString();
Authenticate_User(userid, pass); //---- It gives some conversation error (HTML contorl to string )
}
有关的任何建议。