Users Pricing

forum

home / developersection / forums / retriving radiobutton list from session

Retriving radiobutton list from session

Royce Roy 2296 28 Nov 2014

Retriving radiobutton list selection from session. I have a radiobutton list. I want to have what I selected when I return to the page. The radiobutton list is filled from a array of strings 

Adding selection to the session 

  Session["selection"] = RadioButtonList1.SelectedIndex;
page load 
                    if (!IsPostBack)
                    {
                    RadioButtonList1.SelectedIndex = (string)Session["selection"];
                    }

Not working not sure why


Royce Roy

Other


1 Answers

Anonymous User 29 Nov 2014 Accepted Answer