在Silverlight中调用aspx页面,而不打开它

时间:2013-07-02 14:41:15

标签: c# asp.net silverlight system.net.httpwebrequest

在我的silverlight应用程序中,我调用了一个aspx页面,在目录上创建并注册了一个txt文件。

Uri ub = (new Uri(HtmlPage.Document.DocumentUri, "GenereInfos.aspx?&connexion=" + connexion + ";&id=" + this.Id));

        if (HtmlPage.IsPopupWindowAllowed)
        {
            HtmlPopupWindowOptions opt = new HtmlPopupWindowOptions();
            HtmlPage.PopupWindow(ub, "file", opt);
        }
        else
        {
            HtmlPage.Window.Navigate(ub);
        }

我必须通过我的aspx页面来生成我的txt文件,因为silverlight不允许它。

问题在于,会出现一个弹出窗口,或者页面将加载新的uri。

我想要的是只调用asp中的代码(完美地工作),而不加载uri。

有办法做到这一点吗?

编辑:在DGibbs回答之后,现在还有另一个问题:

WShy我不能在那里使用GetResponse()吗?

HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(new Uri
                     (HtmlPage.Document.DocumentUri, "GenereInfos.aspx?&connexion=" + connexion + ";&idPocedure=" + itmProcedure.IdProcedure));
            string response = new System.IO.StreamReader(req.GetResponse().GetResponseStream()).ReadToEnd();

这里有一个小答案:Silverlight是异步的,所以,我们不能调用同步的GetResponse。

因此,调用我的aspx页面的最佳方法是使用WebClient found here

1 个答案:

答案 0 :(得分:0)

您可以使用WebRequest

HttpWebRequest req = (HttpWebRequest)WebRequest.Create(new Uri
                     (HtmlPage.Document.DocumentUri, "GenereInfos.aspx?&connexion=" + connexion + ";&id=" + this.Id));
string response = new System.IO.StreamReader(req.GetResponse()
                 .GetResponseStream()).ReadToEnd();