0

こんにちはコーダー、いくつか試してみましたがうまくいかないので、ここで希望の答えが得られると思いました

ユーザーの名前を入力してボタンをクリックすると、編集および削除ボタンを使用してすべてのユーザーの詳細を表示できます。詳細を取得します。ユーザーの編集リンクをクリックすると、ユーザーの詳細を編集できますが、検索ユーザーページをクリックして、グリッドビューの編集リンクをクリックすると、取得します

Specified cast is not valid. error

これは、グリッドビューでエラーが発生する場所です

 <asp:TemplateField HeaderText="IsEnable?">
                  <EditItemTemplate>
                        <asp:CheckBox ID="chkIsEnableEdit" runat="server" Checked='<%# Bind("Enable") %>'/>
                    </EditItemTemplate>
                    <ItemTemplate>
                        <asp:CheckBox ID="chkIsEnable" runat="server" Checked='<%# Bind("Enable")%>' Enabled="False" />// here i got this error
                    </ItemTemplate>
                </asp:TemplateField>

使用しています checked='%#<Convert.ToBoolean(Eval(Enable)%'> が、機能していません

これは私のコードビハインドコードです:

protected void Page_Load(object sender, EventArgs e)
{
    if (!Page.IsPostBack)
    {
        this.GetGridData();
    }
}
protected void BindGrid()
{
    con.Open();
    SqlCommand cmd = new SqlCommand("Select * from CreateUser where FirstName like'"+tbSearchUser.Text+"'", con);
    SqlDataAdapter da = new SqlDataAdapter(cmd);
    DataSet ds = new DataSet();
    da.Fill(ds);
    con.Close();
    if (ds.Tables[0].Rows.Count > 0)
    {
        GridView1.DataSource = ds;
        GridView1.DataBind();
    }
    else
    {
        ds.Tables[0].Rows.Add(ds.Tables[0].NewRow());
        GridView1.DataSource = ds;
        GridView1.DataBind();
        int columncount = GridView1.Rows[0].Cells.Count;
        GridView1.Rows[0].Cells.Clear();
        GridView1.Rows[0].Cells.Add(new TableCell());
        GridView1.Rows[0].Cells[0].ColumnSpan = columncount;
        GridView1.Rows[0].Cells[0].Text = "No Records Found";
    }
}
private void GetGridData()
{
    con.Open();
    string query = "Select * from CreateUser";
    da = new SqlDataAdapter(query, con);
    DataSet ds = new DataSet();
    da.Fill(ds);
    GridView1.DataSource = ds;
    GridView1.DataBind();
    con.Close();
}
protected void btnSearchUser_Click(object sender, EventArgs e)
{
    string query = "Select * from CreateUser where FirstName like'" + tbSearchUser.Text + "'";
    da = new SqlDataAdapter(query, con);
    da.Fill(ds);
    GridView1.DataSource = ds;
    GridView1.DataBind();
    //this.BindGrid();
}
protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
    GridView1.PageIndex = e.NewPageIndex;
    GetGridData();
}
protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
{
    GridView1.EditIndex = e.NewEditIndex;
    BindGrid();
}
protected void GridView1_RowUpdating1(object sender, GridViewUpdateEventArgs e)
{
    string query = string.Empty;
    string userid = GridView1.DataKeys[e.RowIndex].Values["UserID"].ToString();
    TextBox FirstName = GridView1.Rows[e.RowIndex].FindControl("txtFirstName") as TextBox;
    TextBox LastName = GridView1.Rows[e.RowIndex].FindControl("txtLastName") as TextBox;
    TextBox DomainID = GridView1.Rows[e.RowIndex].FindControl("txtDomainID") as TextBox;
    TextBox EmailID = GridView1.Rows[e.RowIndex].FindControl("txtEmailID") as TextBox;
    TextBox Password = GridView1.Rows[e.RowIndex].FindControl("txtPassword") as TextBox;
    TextBox ConfirmPassword = GridView1.Rows[e.RowIndex].FindControl("txtConfirmPassword") as TextBox;
    DropDownList RoleType = GridView1.Rows[e.RowIndex].FindControl("ddlrole") as DropDownList;
    CheckBox IsEnable = GridView1.Rows[e.RowIndex].FindControl("chkIsEnableEdit") as CheckBox;

    GridView1.EditIndex = -1;
    con.Open();

    SqlCommand cmd = new SqlCommand("update CreateUser set FirstName='" + FirstName.Text + "',LastName='" + LastName.Text + "',DomainID='" + DomainID.Text + "',EmailID='" + EmailID.Text + "',Password='" + Password.Text + "',ConfirmPassword='" + ConfirmPassword.Text + "',RoleType='" + RoleType.Text + "',Enable='" + IsEnable.Checked + "' where UserID='" + userid + "'", con);
    cmd.ExecuteNonQuery();
    con.Close();
    BindGrid();
    //GridView1.DataBind();
}
protected void GridView1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
{
    GridView1.EditIndex = -1;
    BindGrid();
}
protected void DeleteRecord(object sender, GridViewDeleteEventArgs e)
{
    string userid = GridView1.DataKeys[e.RowIndex].Values["UserID"].ToString();
    try
    {
        con.Open();
        cmd.CommandText = "Delete FROM CreateUser where UserID='"+userid+"'";
        cmd.ExecuteNonQuery();
        con.Close();
        BindGrid();
        lblMessage.Text = "Record Deleted successfully.";
        // Refresh the data
        BindGrid();
    }
    catch (SqlException ee)
    {
        lblMessage.Text = ee.Message;
    }
    finally
    {
        cmd.Dispose();
        con.Close();
        con.Dispose();
      }
   }
}

enable はデータベースのビットです。データベースでビット値を bool に変更すると、そのデータ型を取得できなくなります。理由はわかりません。

助けてくれませんか

前もって感謝します!!!

4

1 に答える 1

1

あなたのコメントによると、列は null 値を保持できます (これは true/false 条件には理想的ではありません):

更新しました

Checked='<%# Eval("Enable").GetType() != typeof(DBNull) ? Convert.ToBoolean(Eval("Enable")) : false %>'
于 2013-10-01T13:00:18.830 に答える