ASP.NET验证控件CustomValidator客户端验证DROPDOWNLIST、TEXTBOX


验证dropdownlist

view plaincopy to clipboardprint?
function chkddl(source, args){  
            if(args.Value=="0")  
                args.IsValid = false;  
            else 
                args.IsValid=true;  
        } 
function chkddl(source, args){
            if(args.Value=="0")
                args.IsValid = false;
            else
                args.IsValid=true;
        }

view plaincopy to clipboardprint?
<asp:CustomValidator ID="CustomValidator1" runat="server" ErrorMessage="CustomValidator" ClientValidationFunction="chkddl" ControlToValidate="DropDownList1"></asp:CustomValidator> 
<asp:CustomValidator ID="CustomValidator1" runat="server" ErrorMessage="CustomValidator" ClientValidationFunction="chkddl" ControlToValidate="DropDownList1"></asp:CustomValidator>  

 验证textbox

function chktext(source, args){  
            if(args.Value=="")  
                args.IsValid = false;  
            else 
                args.IsValid=true;  
        } 
function chktext(source, args){
            if(args.Value=="")
                args.IsValid = false;
            else
                args.IsValid=true;
        }

view plaincopy to clipboardprint?
·········10········20········30········40········50········60········70········80········90········100·······110·······120·······130·······140·······150
<asp:CustomValidator ID="CustomValidator1" runat="server" ErrorMessage="CustomValidator" ClientValidationFunction="chktext" ControlToValidate="TextBox1" ValidateEmptyText="True"></asp:CustomValidator>  
                  

 

本文来自优快云博客,转载请标明出处:http://blog.youkuaiyun.com/gengwanshanreally/archive/2009/05/05/4152608.aspx

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值