在asmx服务中访问Silverlight页面的HttpContext
如果有人问这个问题,我很抱歉 - 如果是的话,我似乎找不到它。
如果我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将 QueryString 对象作为参数传递给 asmx 服务。
从 silverlight 中,您可以使用下面的代码获取主机页面的查询字符串。
希望这有帮助
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.
Hope this helps
不可以,您只能访问当前调用的上下文。您需要做的是将您感兴趣的信息、查询字符串(或其部分)作为参数发送到您的 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.