开发者

How can I pass a value from an ASPX page to another in a different domain

开发者 https://www.devze.com 2023-01-16 20:56 出处:网络
I have an ASPX page in my Application. ASPX pages from other applications in different domain can call this page. But how do I return a value to the calling ASPX page in a different application?

I have an ASPX page in my Application. ASPX pages from other applications in different domain can call this page. But how do I return a value to the calling ASPX page in a different application?

How an ASPX page can return 开发者_开发问答a value to calling page in a different app?


The cleanest solution is to use a web service (here's an older introductory article). Failing that, the calling pages will likely have to be able to parse or scrape the content of your page in order to retrieve a return value.

0

精彩评论

暂无评论...
验证码 换一张
取 消