hi
i m using two textbox one checkbox and button for my login page
i have used cookies for it but its not working
i do not want to use login control
if u have any code provide me with detail
thank u
hi
i m using two textbox one checkbox and button for my login page
i have used cookies for it but its not working
i do not want to use login control
if u have any code provide me with detail
thank u
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
ArshadPosted Oct 29, 2008, 4:20 PM
Response.Cookies("Khan").Value =Strings.Trim(txtuser.Text);Response.Cookies("Khan").Expires = System.DateTime.Today.AddMonths(1);
After that in the page lode of that Login page add these Lines
if (!IsPostBack)
{
if ((Request.Cookies("Khan") != null))
{
txtuser.Text = (Request.Cookies("Khan").Value + "");
}
}
Thats all, just try this if there is any issue please let me know
Thanks
Alex RivenbarkPosted Oct 25, 2008, 10:05 AM