session variables in an ASP.NET

Posted by Beep on Stack Overflow See other posts from Stack Overflow or by Beep
Published on 2013-11-09T22:34:32Z Indexed on 2013/11/10 9:54 UTC
Read the original article Hit count: 170

hi guy i am trying to place my session in to a drop down, any help would be great. at the moment it puts the data in to a label, i wish to put it into a dropdown with it adding a new string every time i click button without getting rid of the last

default page

protected void Button1_Click1(object sender, EventArgs e)
{
    Session["Fruitname"] = TbxName.Text; // my session i have made
}

output page

protected void Page_Load(object sender, EventArgs e)
{
    var  fruitname =  Session["Fruitname"] as String; // my session ive made
    fruit.Text = fruitname; // session used in lable
}

Have Tried

           var myFruits = Session["Fruitname"] as List<string>;
        myFruits.Add(listbox1.Text);

but i get error when i try to run the program

Broken glass thanks for your help, it is still not doing what i need but its getting there.

 var fruitname = Session["Fruitname"] as String; // my session ive made
           fruit.Text = string.Join(",", fruitname); // session used in lable

this is what is working. i need a dropdown to display all the strings put into TbxName.Text; to output into fruit

© Stack Overflow or respective owner

Related posts about c#

Related posts about ASP.NET