1
Answer

Binding multiple select rows in aspgrid by jquery

Ms_ Dev

Ms_ Dev

7y
1.4k
1
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 -
 
  1. //Append Html  
  2.  StringBuilder htmlToReturn = new StringBuilder();  
  3. if (Details.Count > 0)  
  4. {  
  5.     htmlToReturn.AppendLine();  
  6. }  
  7. else  
  8. {  
  9.   
  10. }  
  11. foreach (var Dtls in Details.Values)  
  12. {  
  13.   
  14. //htmlappend to gridview  
  15.   
  16. }  
Thanks,
 
Answers (1)