Does anyone have any techniques for listing SQL rows in an HTML table using ASP.NET and Javascript in conjunction?
Actual code would be really nice...
Does anyone have any techniques for listing SQL rows in an HTML table using ASP.NET and Javascript in conjunction? Actual code would be really nice... |
|||
|
Questions on Code Review Stack Exchange are expected to relate to code review request within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
There are lots of techniques here, it really all depends on what you're looking to do and what technology you're using. One of the easiest ways, if you're using Web Forms, is to place a GridView on your page and wire it up to a SqlDataSource control.
There are plenty of other options you can include with each of these controls, but those are the basics. This, of course, does not do anything with JavaScript. What is it you want the JS to be able to do? |
|||
|
Javascript won't help you get the data into the page. You could use either a |
|||
|