I am still new to JSON / jQuery.
I need a quick guide on dynamically populating an Html table on a client. My table has fixed columns, but the rows grow dynamically depending on the data received.
Say I have a web method on server ( GetActiveUsers) that returns, say n-users. I am using this sql:
select userId, Title,Surname,FirstName from Users where status=1
Please give me a sample code
Edit
I have a solution for this on this post here
thanks guys
source
share