Ms_ Dev

Ms_ Dev

  • NA
  • 236
  • 88.7k

Binding multiple select rows in aspgrid by jquery

Apr 13 2017 11:44 PM
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)