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.
似乎建议使用 HTTPListener 类,但显然,它只向请求返回另一个网页。
我如何在我的网站中发布表单中的数据并在我的 c# 应用程序中处理它们。
任何教程或简单的例子都可以。
我的网页中会有这样的表格
<form action = "C# application" method = "post"> <input type = "text" /> <input type = "submit" />
文本数据应发送到我的 C# 应用程序进行处理
最简单的解决方案是使用数据库。
创建 Web 应用程序和 Windows 应用程序都可以通信的远程数据库 需要使用计时器对象来频繁查询数据库并显示新消息 复杂的解决方案涉及在应用程序之间创建 UDP/TCP 连接。
使用 httphandlers 可以帮助您,或者您可以通过 WCF 创建 Web 服务来处理和处理您的请求。