silverlight应用中有一个打开html页面的功能,但是该页面在服务器端会验证cookie,那调用打开html页面的api时怎么传入cookie
设置Cookie可以使用
HtmlPage.Document.SetProperty(“cookie”,cookieValue);
取得Cookie 使用
HtmlPage.Document.Cookies;即取得了保存在Cookie中的字符串。
看看这个是否你要的http://blog.csdn.net/forever_kingdom/article/details/5869390