AutoPostBack和RequiredFieldValidator行为

时间:2015-12-15 20:17:47

标签: c# asp.net requiredfieldvalidator autopostback

我有一个带有AutoPostBack属性和RequiredFieldValidator的用户名文本框。问题是当我在文本框中输入内容然后退出时因此触发AutoPostBack如果我来了回到文本框并删除我输入的内容,然后从文本框中退出,表单显示消息"用户名是必需的"但它只是闪烁了一秒钟,然后页面刷新。
我不明白这种行为。我可以以某种方式更改表单,以便需要"用户名"消息停留或根本不闪烁。 如果我从文本框中退出而没有输入任何事情(我认为不是AutoPostBack
另一个问题是一样的,但我认为我的疑虑有点不同:
如果文本框为空并且我按Tab键或实际触发RequiredFieldValidator的内容,为什么RequiredFieldValidator不会被触发 如果RequiredFieldValidator无效,为什么AutoPostBack仍然存在,是否在页面生命周期之前检查过Validators?

using System;
using System.Data;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
using System.Configuration;

namespace Registration_LoginPortel
{
public partial class RegistrationPage : System.Web.UI.Page
{
    int i = 0;
    protected void Page_Load(object sender, EventArgs e)
    {



    }
    protected void SubmitButton_Click(object sender, EventArgs e)
    {
        lblLoginAvailable.Visible = false;
        Response.Write("PPpostback" + (++i));
        if (!CheckLogin(Usn.Text.ToString().Trim()))
        {
            //Register the user
            try
            {
                SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["RegistrationConnectionString"].ConnectionString);
                con.Open(); string s = Usn.Text;
                string sql_insertQuery = "INSERT INTO UserData(username,password,country)values (@UName,@UPass,@UCountry)";
                //string sql_insertQuery = "INSERT into UserData(username,password,country) VALUES ('"+Usn.Text+"','"+pass.Text+"','"+country.Text+"')";
                SqlCommand com = new SqlCommand(sql_insertQuery, con);
                com.Parameters.AddWithValue("@UName", Usn.Text);
                com.Parameters.AddWithValue("@UPass", pass.Text);
                com.Parameters.AddWithValue("@UCountry", country.Text);

                com.ExecuteNonQuery();
                // Response.Redirect("Admin.aspx");
                Response.Write("Registration is successfull");
                con.Close();
            }
            catch (Exception ex)
            {
                //Response.Write("Error : " + ex.Message);
                Response.Write("\n\nError : " + ex.ToString());
            }
        }
        else
        {
            lblLoginAvailable.Visible = true;
            lblLoginAvailable.Text = "This login already exists in our system. Chooce another login please";
        }
    }
    protected bool CheckLogin(string login)
    {
        SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["RegistrationConnectionString"].ConnectionString);
        SqlCommand cmd = new SqlCommand("select count(*) from UserData where lower(username) = lower(@login)", con);
        cmd.Parameters.Add("@login", SqlDbType.VarChar).Value = login;
        string id = "";
        try
        {
            con.Open();
            id = (int)cmd.ExecuteScalar() == 0 ? "" : cmd.ExecuteScalar().ToString();
        }
        catch (Exception ex)
        {
            //...
        }
        finally
        {
            con.Close();
        }
        if (String.IsNullOrEmpty(id)) return false;
        return true;
    }


    protected void Usn_TextChanged(object sender, EventArgs e)
    {
        lblLoginAvailable.Visible = false;

    }

}

}

2 个答案:

答案 0 :(得分:0)

该页面正在回发,因此返回服务器并与您的RequiredFieldValidator进行战斗。在后台,您的RequiredFieldValidator将Javascript传递给页面,然后该页面正在进行魔术并检查是否需要显示消息。当回发事件触发时,它将整个页面发回并在其上返回它重新加载页面,从而丢失UI上的jscript消息。

我建议不要使用autopostback这样的东西,因为它会给服务器带来不必要的负担。你究竟想要这件事做什么?

答案 1 :(得分:0)

您可以删除您的requiredfieldvalidator,按钮的代码将是:

<asp:Button ID="btnSubmit" runat="server" OnClientClick="return checkvalue();" OnClick="Button_Click" />

checkvalue()是一种javascript方法,您可以使用该方法检查文本框的值。

<script type="text/javascript">
    function checkvalue(){
        var txt = document.getElementById("yourTextboxId");
        if (txt.value.length == 0){
            alert('Insert a data');
            txt.focus();
            return false;
        }
        return true;
    }
</script>

只有当用户点击按钮时才会出现此脚本,它不会触发回发。此脚本将检查文本框内的文本长度,如果长度为0表示没有输入文本,则会要求用户输入文本,光标将自动设置为文本框控件。

希望有所帮助