Posted on: 7/13/2014 12:20:03 AM | Views : 327

Hi 
in my application there is the index.aspx page where user have to choose his country and when he press on Moveto button them user will redirect him to the berava.aspx as there is a listview show the products depending on his country selection through a session, so i need if the user check on checkbox to save his choice and next visit redirect him automatically to the berava.aspx page, i don't have that experience to create a cookies in fact so can you help me by that if you don't mind 

public partial class Index : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void Moveto_Click(object sender, EventArgs e) { Session["location"] = worlddrdolist.SelectedItem.Value; Response.Redirect("Berava.aspx"); } protected void worlddrdolist_SelectedInde ...

Go to the complete details ...