JavaScript、asp.net 和 Sql Server
我知道如何将客户端 JavaScript 与 asp.net 脚本结合使用。但我无法弄清楚如何从数据库检索数据并在 asp.net 页面中使用 JavaScript 显示该数据。
假设我编写了一个 JavaScript 网格。那么我怎样才能用来自 SQL Server 的数据填充该网格并在 asp.net 页面上显示该网格呢?
也就是说,如何在服务器端连接 C# 和 JavaScript?
如果您向我提供示例的网络链接,我将不胜感激。
希望我能够清楚地表达我的问题。
I know how to use client side JavaScript with asp.net script. But I am unable to figure out how to retrieve data from database and show that data with JavaScript in an asp.net page.
Suppose I have written a JavaScript Grid. Then how can I fill that grid with data from SQL Server and show that grid on an asp.net page?
That is, how to connect C# and JavaScript on the server side?
I would be grateful if you provide me with an web-link of an example.
Hope I am able to articulate my question.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 AJAX 来实现此目的。它可以向服务器发出请求,请求完成后响应可以以多种格式在 JavaScript 中读取,例如 HTML、XML、JSON。
You can use AJAX for this. It can issue a request to the server and after completion of the request response can be read in JavaScript in many formats like HTML, XML, JSON.