在这种情况下如何使用验证器是ASP.NET?

时间:2009-07-07 04:19:01

标签: asp.net validation

我有两个十进制输入文本框。

两个输入的总和不能超过100.当input1为40时,input2不能超过60.

我需要在客户端做所有事情,并且需要允许客户输入任何值。如果输入的值超过限制,我需要显示验证器错误消息:

Page.isValid = false

现在我为每个输入框都有两个单独的验证器,但我不知道如何在客户端更改两个验证器的valueToCompare。

请指教,

由于

3 个答案:

答案 0 :(得分:4)

您应该考虑使用CustomValidator控件。 Here's一篇引导您使用它的文章。

您的代码可能如下所示:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" 
    Inherits="WebApplication1._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head runat="server">
    <title></title>
    <script type="text/javascript">
      function validateTextBoxen(sender, args) {
        // You'll have more thorough validation, I'm sure
        var value1 = parseFloat(
            document.getElementById('<%=textBox1.ClientID%>').value);
        var value2 = parseFloat(
            document.getElementById('<%=textBox2.ClientID%>').value);
        args.IsValid = (value1 + value2) < 100;
      }
    </script>
  </head>
  <body>
    <form id="form1" runat="server">
      <div>
        <asp:TextBox ID="textBox1" runat="server" />
        <asp:TextBox ID="textBox2" runat="server" />
        <asp:CustomValidator runat="server" EnableClientScript="true" 
          OnServerValidate="onCustomValidation" ID="customValidator" 
          ErrorMessage="Invalid!"
          SetFocusOnError="true" ClientValidationFunction="validateTextBoxen"/>
        <asp:Button runat="server" OnClick="button_Click"/>
        <asp:Literal runat="server" ID="placeholder" />
      </div>
    </form>
  </body>
</html>

代码隐藏:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace WebApplication1
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void onCustomValidation(
            object sender, ServerValidateEventArgs e)
        {
            float value1 = 0f;
            float value2 = 0f;
            if (!float.TryParse(textBox1.Text, out value1) 
                || !float.TryParse(textBox2.Text, out value2)
                || value1 + value2 > 100f)
            {
                e.IsValid = false;
            }
        }

        protected void button_Click(object sender, EventArgs args)
        {
            placeholder.Text = Page.IsValid ? "Valid" : "Invalid";
        }
    }
}

答案 1 :(得分:0)

现在验证HTML表单IMO的最佳方法是使用jQuery插件like this one

答案 2 :(得分:0)

在客户端,单击按钮,使用ClientClick属性,并将其设置为javascript函数名称以验证输入

e.g。

<asp:Button ID="btnSubmit" OnClientClick=" return validate()" runat="server" Text="Submit" ></asp:Button>

在javascript中编写一个validate()函数,它检查两个输入的总和