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.
我正在尝试为我的网站构建桌面界面并希望将变量传递给 asp 服务器。但找不到更简洁地传递这些值的正确方法我想将变量从单独的窗口窗体应用程序传递给单独的 asp服务器。我不想将值传递给网络浏览器,而是将它们直接传递给网络服务器。
在您的网站中,创建一个 API 控制器,它将您的桌面数据作为 POST 请求。
然后,您可以从您的客户端轻松传递数据,即在发送前序列化为 JSON。