欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ASP.NET(C#)验证数字

程序员文章站 2022-04-19 23:25:37
方法一: int i=0; if (!int.tryparse(this.txtpage.text, out i)) {    response.wri...

方法一:
int i=0;
if (!int.tryparse(this.txtpage.text, out i))
{
   response.write("<script>alert('请输入有效数字!')</script>");
   this.txtpage.text = string.empty;
 }//判断是否是数字
方法二:
try
        {

            if (convert.toint32(this.txtpage.text) > totalpage || convert.toint32(this.txtpage.text)<1)
            {
                clientscript.registerclientscriptblock(gettype(), "提示", "alert('请输入有效数字!')", true);
            }
            else
            {
              viewstate["pageindex"] = this.txtpage.text;
              getdata();
            }
        }
        catch (exception)
        {
           clientscript.registerclientscriptblock(gettype(), "提示", "alert('请输入有效数字!')", true);
        }

 


摘自 淡蓝蓝蓝