Hi Vikram
/p>
Your control works great. Thanks.
But the problem is that it is not persisting the selectedText during PostBacks. Let me explain in detail.
/p>
On Search.aspx page, Search button click i have below code
Session["Discipline"] = ddlDiscipline.SelectedItem.Text;
/p>
On SearchResults.aspx page results are displayed fine. User navigates from SearchResults.aspx to UserView.aspx page by selecting one of the columns in GridView.
/p>
On UserView.aspx page i have Retrieve Search results page. During this process RestoreSearchCriteria() is called and when I do ddlDiscipline.SelectedItem.Text = Convert.ToString(Session["Discipline"]), it says null.
It means i m loosing the value here.
/p>
your help is appreciated.
/p>