0
是否有無法從c#中的RadCombobox中獲取上次選定的值。請指教如何從RadComboBox中獲取上次選定的值
我做了這樣的事情
protected void cboTest_SelectedIndexChanged(object o, Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs e)
{
Session["CurrentItem"] = e.value;
}
public int GetLastSelectedItem
{
set { Session["CurrentItem"] = value;}
}
then i need to access the session
int productId = 0;
productId = //need to assigned previous selected radcombo value
通過*最後*選擇的值,你的意思是* *當前選擇的值?或者*之前被選中的值?如果沒有選擇任何值會發生什麼? –
嗨科迪,我已經更新了代碼並將值分配給了會話。請參考代碼。謝謝 – Spidey