在開發Silverlight應用程序時
本文我們簡單的介紹一下如何在Silverlight應用程序中獲取ASP
需求
如下面的項目結構
其中Default
在單擊
{
Response
this
this
}
使用InitParams
第一種方法
{
this
Request
Request
}
然後在Silverlight應用程序的UserControl中設置兩個屬性
{
set {
this
}
}
public String Email
{
set {
this
}
}
這樣就可以在Application_Startup事件中獲取初始化參數
{
Page page = new Page();
page
page
this
}
這樣我們就通過InitParams來在Silverlight應用程序中獲取到了ASP
使用HtmlDocument
其實上面的方法獲取ASP
這樣我們可以在Silverlight直接使用HtmlDocument對象來獲取當前Silverlight應用程序宿主頁面中的參數
{
IDictionary<String
this
this
}
運行後可以看到與上面的效果一致
總結
本文的內容非常簡單
From:http://tw.wingwit.com/Article/program/net/201311/13418.html