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 -
-
- StringBuilder htmlToReturn = new StringBuilder();
- if (Details.Count > 0)
- {
- htmlToReturn.AppendLine();
- }
- else
- {
-
- }
- foreach (var Dtls in Details.Values)
- {
-
-
-
- }
Thanks,