我为Windows Mobile 8编写了一个移动应用程序,该应用程序发送Ajax请求以从Web检索一些数据。
My Mobile App在HTML5 LocalStorage上存储变量,我需要访问thoes值来更新我的LIVE-TILE内容。
任何建议?
答案 0 :(得分:0)
如果您使用的是WebBrowser控件,则可以通过javascript函数访问html元素。 只需在html页面中创建javascript函数并从C#代码调用它,例如:
function test(foo){
alert(foo);
}
private void TestButton_OnClick(object sender, EventArgs e)
{
webBrowser.InvokeScript("test", 1234);
}