Hi
I have below code . I want when value in dropdown changes then it should search that Session Delivery No value in table row & highlight that column
htmlTable.Append("<tr>");
htmlTable.Append("<td style='display:none'>" + colum.SessionDeliveryCalendarID + "</td>");
htmlTable.Append("<td style='display:none'>" + colum.BookID + "</td>");
htmlTable.Append("<td style='display:none'>" + colum.SessionID + "</td>");
htmlTable.Append("<td>" + colum.SessionDeliveryNo + "</td>");
htmlTable.Append("</tr>");
PlaceHolderTable.Controls.Add(new Literal { Text = htmlTable.ToString() });
protected void ddl_SelectedIndexChanged(object sender, EventArgs e)
{
// session deleivery no value
}
Thanks