ViewState["Apple] = "Apple"; ViewState["Orange"] = "Orange"; string fruit = (string)ViewState["Apple"]; string fruit1 = (string)ViewState["Orange"]; How do I store the viewstate of apple and orange at postback?