欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net 临时数据保存实现代码

程序员文章站 2024-03-05 22:26:19
如果你感觉有用的话拷 走的时候顺便顶一下! 复制代码 代码如下: public mainpage() { initializecomponent(); } phoneapp...
如果你感觉有用的话拷
走的时候顺便顶一下!
复制代码 代码如下:

public mainpage()
{
initializecomponent();
}
phoneapplicationservice phoneappservice = phoneapplicationservice.current;
protected override void onnavigatedfrom(system.windows.navigation.navigationeventargs e)
{
phoneappservice.state["myvalue"] = textbox1.text;
base.onnavigatedfrom(e);
}
protected override void onnavigatedto(system.windows.navigation.navigationeventargs e)
{
object someobject;
if (phoneappservice.state.containskey("myvalue"))
{
if (phoneappservice.state.trygetvalue("myvalue", out someobject))
{
textbox1.text = someobject.tostring();
}
}
base.onnavigatedto(e);
}

作者:mastermeng