asp.net类的调用问题
我写了一个类protectedvoidjudgec(intmoney,stringusername){intmoneyn;DBTranctiondb=newDBTranc...
我写了一个类
protected void judgec(int money,string username)
{
int moneyn;
DBTranction db = new DBTranction();
string sql = "select xjsl from gs where gsname='" + username + "'";
DataSet ds = new DataSet();
ds = db.Select(sql);
moneyn = Int32.Parse(ds.Tables[0].Rows[0][0].ToString());
if (moneyn < money)
{
MessageBox.Show("你的现金不够!", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
然后在其他页面调用它,但我希望它弹出对话框后,之后的代码都不执行,怎么写啊
用return没有用,他还是会执行其他页面的后面的代码 展开
protected void judgec(int money,string username)
{
int moneyn;
DBTranction db = new DBTranction();
string sql = "select xjsl from gs where gsname='" + username + "'";
DataSet ds = new DataSet();
ds = db.Select(sql);
moneyn = Int32.Parse(ds.Tables[0].Rows[0][0].ToString());
if (moneyn < money)
{
MessageBox.Show("你的现金不够!", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
然后在其他页面调用它,但我希望它弹出对话框后,之后的代码都不执行,怎么写啊
用return没有用,他还是会执行其他页面的后面的代码 展开
3个回答
展开全部
把这个函数返回类型改为bool,然后在其它页面判断其返回值再决定是否执行之后的代码。
例如:
protected bool judgec(int money,string username)
{
int moneyn;
DBTranction db = new DBTranction();
string sql = "select xjsl from gs where gsname='" + username + "'";
DataSet ds = new DataSet();
ds = db.Select(sql);
moneyn = Int32.Parse(ds.Tables[0].Rows[0][0].ToString());
if (moneyn < money)
{
MessageBox.Show("你的现金不够!", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
return false;
}
return true;
}
例如:
protected bool judgec(int money,string username)
{
int moneyn;
DBTranction db = new DBTranction();
string sql = "select xjsl from gs where gsname='" + username + "'";
DataSet ds = new DataSet();
ds = db.Select(sql);
moneyn = Int32.Parse(ds.Tables[0].Rows[0][0].ToString());
if (moneyn < money)
{
MessageBox.Show("你的现金不够!", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
return false;
}
return true;
}
展开全部
我觉得可以把这个方法改为返回bool类型的方法,如果moneyn<money则弹出对话
框并返回FALSE,否则返回TRUE。
然后其他页面调用的时候,判断一下,如果方法返回TRUE,才执行之后代码!
框并返回FALSE,否则返回TRUE。
然后其他页面调用的时候,判断一下,如果方法返回TRUE,才执行之后代码!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
MessageBox.Show("你的现金不够!", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
return;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询