asp.net保存数据
举个精简的例子intprice_fourth_child;protectedvoidPage_Load(objectsender,EventArgse){if(!IsPo...
举个精简的例子
int price_fourth_child;
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
getToursDetail(); //这个函数对price_fourth_child进行赋值
}
protected void btnBook_Click(object sender, EventArgs e)
{
在这里用到price_fourth_child这个数据
}
现在问题是这种类型的问题,通用的解决方案是什么?
因为加上if判断之后,回发页面就不执行那个赋值函数了。所以price_fourth_child已经变成0了。
我想一直保存这个数据,该如何解决?
放在session里面?还是if去掉?
本人都不大赞成这两种做法。 展开
int price_fourth_child;
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
getToursDetail(); //这个函数对price_fourth_child进行赋值
}
protected void btnBook_Click(object sender, EventArgs e)
{
在这里用到price_fourth_child这个数据
}
现在问题是这种类型的问题,通用的解决方案是什么?
因为加上if判断之后,回发页面就不执行那个赋值函数了。所以price_fourth_child已经变成0了。
我想一直保存这个数据,该如何解决?
放在session里面?还是if去掉?
本人都不大赞成这两种做法。 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询