如何监听请求并保持“对话”在 ASP.NET 中

发布于 2024-10-12 06:55:41 字数 322 浏览 4 评论 0原文

好的,我对 Web 开发还很陌生,这有点难以抽象地定义,所以我会准确地说出我想要做的事情:

我的服务器上运行着一个 asp.net 网站。我想让其他网站有一个重定向到特定 URL 的按钮。该 URL 是在创建其他网站(服务器端)期间确定的。我希望其他网站通过提供某些参数来请求该 URL。我将相应地创建 URL 并返回包含该 URL 的响应。

澄清一下:用户浏览其他网站,到达应该有上述按钮的页面,其他网站请求 URL,提供参数,接收 URL 并创建带有收到 URL 的按钮的页面。

对我来说重要的是,这适用于“其他”网站的任何平台。最简单的方法是什么?

非常感谢。

OK, I'm quite new to web developing and this is a bit difficult to define abstractly so I'll say exactly what I'm trying to do:

I have an asp.net website running on my server. I want to have other websites to have a button which redirects to a specific URL. This URL is determined during the creation (server side) of the other website. I want the other website to request that URL by supplying certain parameters. I'll create the URL accordingly and return a response which contains the URL.

To clarify: User browses other website, gets to page which is supposed to have said button, other website requests URL, supplies params, receives URL and creates page with button with URL received.

It's important to me that this works with any platform of "other" website. What is the simplest way to do this?

Many thanks in advanced.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

好多鱼好多余 2024-10-19 06:55:41

听起来您最好的选择是创建一个可供其他网站使用的网络服务。

MSDN 网站实际上有一个很好的概述和一些不错的教程:ASP.NET网络服务

Sounds like your best bet would be to create a web service that would be consumed by the other websites.

The MSDN site actually has a good overview and a couple of decent tutorials: ASP.NET Web Services

一杆小烟枪 2024-10-19 06:55:41

我认为最简单的方法是编写一个 Web 服务(例如,可以使用 WCF),它将所述 URL 返回到其他网站。 “对 URL 的请求”只是从其他网站到您的 Web 服务的 Web 服务调用。

I think the simplest way would be to write a web service (WCF could be used, for example) which returns the said URL to the other web site. The "request for the URL" would just be a web service call from the other web site to your web service.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文