62,267
社区成员
发帖
与我相关
我的任务
分享
protected void Page_Load(object sender, EventArgs e)
{
if(Cache["PageTest"]==null){
Cache.Insert("PageTest",new FunctionList().getFriend());
}
this.Label1.Text=Cache["PageTest"].ToString();
}