Hi
here is my code in which i want to get the username and password from cookies the username is geting fine but password is geting empty please help me
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Session["Cancel"] = "0";
if (!IsPostBack)
ToolkitScriptManager1.SetFocus(Txbx_LoginName.ClientID);
div_msg.Visible = false;
if (Request.Cookies["Credentials"] != null && Request.Cookies["Credentials"]["UserName"] != null &&
Request.Cookies["Credentials"]["Password"] != null)
{
Txbx_LoginName.Text = Request.Cookies["Credentials"]["UserName"];
TxBx_ ...
Go to the complete details ...