Hi
In below code i want to search say ddl1 selected value & then highlight Book Title
htmlTable.Append("<tr>"); htmlTable.Append("<td style='display:none'>" + colum.SessionDeliveryCalendarID + "</td>"); htmlTable.Append("<td style='display:none'>" + colum.BookID + "</td>"); htmlTable.Append("<td>" + Count.ToString() + "</td>"); htmlTable.Append("<td>" + colum.SessionDeliveryNo + "</td>"); if (Res.BookAvailableForSession == true) { htmlTable.Append("<td>" + Res.BookTitle + "</td>"); } </tr> PlaceHolderTable.Controls.Add(new Literal { Text = htmlTable.ToString() }); </table>
Thanks