9个回答
展开全部
你的输入有错误,输入的应该是int类型,输入框里只能写数字,不然就会出错
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐于2017-11-25
展开全部
1.txtGoodsJhPrice和txtGoodsNum输入的是整数吗,不能为空的哟!
2.建议你将字符串转换成整数的时候最好判断一下它是不是整数
用我这个函数把 GetInt(txtGoodsJhPrice.Text)就不会出错了!
private const string regInt = "^[1-9]\\d*$";
public static bool IsNumber(string str)
{
return Regex.IsMatch(str, regInt);
}
public static int GetInt(string str)
{
int i = 0;
if (!string.IsNullOrEmpty(str) && IsNumber(str))
{
i = int.Parse(str);
}
return i;
}
2.建议你将字符串转换成整数的时候最好判断一下它是不是整数
用我这个函数把 GetInt(txtGoodsJhPrice.Text)就不会出错了!
private const string regInt = "^[1-9]\\d*$";
public static bool IsNumber(string str)
{
return Regex.IsMatch(str, regInt);
}
public static int GetInt(string str)
{
int i = 0;
if (!string.IsNullOrEmpty(str) && IsNumber(str))
{
i = int.Parse(str);
}
return i;
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
textbox.text 值为空
convert.ToInt32(xx) xx 为空 或 不是数字 就报错
楼上在后台验证的,最好在提交之前要对必填项做验证,前台js验证简单而不与服务器交互。
convert.ToInt32(xx) xx 为空 或 不是数字 就报错
楼上在后台验证的,最好在提交之前要对必填项做验证,前台js验证简单而不与服务器交互。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
if(txtGoodsJhPrice.Text.Trim().Length > 0 && txtGoodsNum.Text.Trim().Length > 0)
{
txtGoodsJhPrice.Text = (Int.Parse(txtGoodsJhPrice.Text.Trim()) * Int.Parse(txtGoodsNum.Text.Trim())).ToString();
}
你最好还是在提交前做好表单数据验证
1、验证输入内容是否为空
2、验证输入的数据格式是否正确
{
txtGoodsJhPrice.Text = (Int.Parse(txtGoodsJhPrice.Text.Trim()) * Int.Parse(txtGoodsNum.Text.Trim())).ToString();
}
你最好还是在提交前做好表单数据验证
1、验证输入内容是否为空
2、验证输入的数据格式是否正确
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询