在asmx服务中访问Silverlight页面的HttpContext

发布于 2024-10-11 10:08:30 字数 297 浏览 4 评论 0原文

如果有人问这个问题,我很抱歉 - 如果是的话,我似乎找不到它。

如果我有一个 silverlight 4 页面调用一个普通的旧 asmx Web 服务,有没有办法从 asmx WebMethod 访问托管我的 silverlight 的 aspx 页面的 http 上下文?

HttpContext.Current 似乎与对服务的调用有关(路径属性是 asmx 文件的路径),因此 HttpContext.Current.Request.QueryString (我的内容)我真的很想)是空的。

I'm sorry if this has been asked - I can't seem to find it if so.

If I have a silverlight 4 page calling a plain old asmx web service, is there a way to access the http context of the aspx page hosting my silverlight from the asmx WebMethod?

HttpContext.Current seems to relate to the call to the service (the path property is the path to the asmx file) and so HttpContext.Current.Request.QueryString (what I'm really after) is empty.

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

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

发布评论

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

评论(2

花开柳相依 2024-10-18 10:08:30

您可以将 QueryString 对象作为参数传递给 asmx 服务。

从 silverlight 中,您可以使用下面的代码获取主机页面的查询字符串。

var queryString = System.Windows.Browser.HtmlPage.Document.QueryString;

var id = System.Windows.Browser.HtmlPage.Document.QueryString["id"]; //if u want a specific item

希望这有帮助

You could pass the QueryString object as a parameter to the asmx service.

from silverlight you can get the query string of the host page using the code below.

var queryString = System.Windows.Browser.HtmlPage.Document.QueryString;

var id = System.Windows.Browser.HtmlPage.Document.QueryString["id"]; //if u want a specific item

Hope this helps

心头的小情儿 2024-10-18 10:08:30

不可以,您只能访问当前调用的上下文。您需要做的是将您感兴趣的信息、查询字符串(或其部分)作为参数发送到您的 Web 服务方法。

No, you can only access the context of the current call. What you need to do is send the information that you are interested in, the query string (or parts of it), to your web service method as a parameter.

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