1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
protected void RCB_RechTEST_SelectedIndexChanged(object o, EventArgs e)
{
try
{
//Loading sub-topic-dropdownlist with Subtopic List
hdRechImgSelectedTopicIndex.Value = RCB_RechRubriqueImage.SelectedValue;
hdImgSelectedSubTopicIndex.Value = RCB_RechSousRubriqueImage.SelectedValue;
hdPageRequestFromImage.Value = "True";
hideControlsForImageTab();
}
catch (Exception ex)
{
string err = ex.Message;
//ExceptionManager.Publish(ex);
EventLogger.Current.WriteExceptionToLog(ex, EventLogEntryType.Error);
}
} |
Partager