Hi,
I have a asp grid, i am filling the data in the aspgrid by usr of handler. I want to fill/append the data in the form of html.
My handler code is something like -
- //Append Html
- StringBuilder htmlToReturn = new StringBuilder();
- if (Details.Count > 0)
- {
- htmlToReturn.AppendLine();
- }
- else
- {
- }
- foreach (var Dtls in Details.Values)
- {
- //htmlappend to gridview
- }

Bikesh SrivastavaPosted Apr 15, 2017, 9:41 AM