Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我正在构建的一个小应用程序上创建了一个按钮,但不能使用 MessageBox.Show b/c 我使用的是 Web 而不是 Windows。有谁知道如何让我的消息使用 C# 显示?
MessageBox 适用于 Windows 应用程序。将 JavaScript 用于 Web 应用程序中的消息框。 alert('hello world'); C# 代码由 Web 服务器在后端处理,不会向最终用户显示消息框。JavaScript 由浏览器处理,向最终用户显示消息框。您必须使用 JavaScript 向用户显示消息框。那有意义吗?
alert('hello world');