I have no idea in creating javascript. Can javascript fetch data from the database?
|
feedback
|
closed as not a real question by John Conde♦ Jun 4 '11 at 13:45
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
Traditionally you would retrieve and display data with ASP.net, not with JavaScript. Microsoft offers detailed documentation on data access with ASP.net. Client-side JavaScript can't retrieve data from an SQL database directly, but you could create a page with ASP.net that fetches data and returns the results as JSON, then request that page with JavaScript by using jQuery's ajax() method. | |||
|
feedback
|
