Hi
I want to pass RatingID as parameter on click on button in a row & want to show data in repeater in Modal Popup
BALSessionRating bALSessionRating = new BALSessionRating();
List Result = bALSessionRating.GetSessionRatingReport();
if (Result != null)
{
htmlTable.Append("");
htmlTable.Append("Session Delivery No Rating By Rating For Review Action ");
htmlTable.Append("");
foreach (var colum in Result)
{
htmlTable.Append("");
htmlTable.Append("");
htmlTable.Append("" + colum.SessionDeliveryNo + " ");
htmlTable.Append(" ");
}
htmlTable.Append("");
htmlTable.Append("
");
PlaceHolderTable.Controls.Add(new Literal { Text = htmlTable.ToString() });
}
Thanks
Muhammad Imran AnsariPosted Apr 18, 2022, 3:01 AM