Sorting Dynamically generated HTML Table
Posted
by Mahesh Varia
on Stack Overflow
See other posts from Stack Overflow
or by Mahesh Varia
Published on 2010-04-20T06:18:36Z
Indexed on
2010/04/20
6:23 UTC
Read the original article
Hit count: 262
sorting
I am generating a dynamic HTML table string and displaying inside a div. I am assigning ID and runat server in that string. eg.
string s="<table id='tblAll' runat='server'></table>"
.
This string is generated on some different page, and its passed as XmlhttpResponseText
I want to apply sorting on this table, It would be great if any one can help me out. Thanks
© Stack Overflow or respective owner