不能输入带小数点的数字,请帮助
一个文本框输入数字时,对于整数可以输入,而带有小数点的数字则不能输入,判断为不是数字,不知哪里错了 !请教各位指点一下代码 如下:
int test = Convert.ToInt32(this.tbdata.Text.ToString()); //增加该变量是为了判断输入的为数字
scriptStr = "<script>" +
"window.opener.document.all('" + Request.QueryString["DataDescr"].ToString() + "').value='"+this.tbdata.Text.ToString()+"';" +
"window.opener.document.all('" + Request.QueryString["Data"].ToString() + "').value='"+this.tbdata.Text.ToString()+"';" +
"window.close();" +
"</script>";
}
catch ( Exception )
{
Response.Write("<script language='javascript'>alert('请输入数字!');</script>");