J
John Owens
I do something like this:
HttpCookie cookie = Request.Cookies[ "AuthInfo" ];
if( cookie != null )
{
tbUserName.Text = cookie.Values[ "UserName" ];
tbPassword.Text = cookie.Values[ "Password" ];
}
This works except tbPassword is a WebControls.TextBox and it's set to mode
"password". It doesn't display the circles indicating that it's got a
value - even though it does.
Anyone know a way to fix this?
Thanks
John.
HttpCookie cookie = Request.Cookies[ "AuthInfo" ];
if( cookie != null )
{
tbUserName.Text = cookie.Values[ "UserName" ];
tbPassword.Text = cookie.Values[ "Password" ];
}
This works except tbPassword is a WebControls.TextBox and it's set to mode
"password". It doesn't display the circles indicating that it's got a
value - even though it does.
Anyone know a way to fix this?
Thanks
John.