javascript - 尝试从 C# 中的文本框获取文本值时出错(ASP.NET gridview)

标签 javascript c# mysql asp.net gridview

当我尝试从文本框中获取值时,我不断收到此错误(参见图片),但我不知道如何修复它。我正在使用以下代码:

protected void Button3_Click(object sender, EventArgs e)
    {
        _controller = new Controller();

        //Variablen
        string afspraak ="";

        foreach (GridViewRow row in GridView1.Rows)
        {
            afspraak = ((TextBox)row.FindControl("txtEditTabel")).Text;               
        }

我将 javascript 与 ASP.NET 结合使用,代码如下所示; 有关js的更多信息:EDITABLE LABEL

JAVASCRIPT(单击时将标签更改为文本框)

$(function () {
//Loop through all Labels with class 'editable'.
$(".editable").each(function () {
    //Reference the Label.
    var label = $(this);

    //Add a TextBox next to the Label.
    label.after("<input type = 'text' style = 'display:none' />");

    //Reference the TextBox.
    var textbox = $(this).next();

    //Set the name attribute of the TextBox.
    var id = this.id.split('_')[this.id.split('_').length - 1];
    //textbox[0].name = id.replace("Label","Textbox"); //tis dit hier van die id's
    textbox[0].name = "txtEditTabel";
    //Assign the value of Label to TextBox.
    textbox.val(label.html());

    //When Label is clicked, hide Label and show TextBox.
    label.click(function () {
        $(this).hide();
        $(this).next().show();
    });

    //When focus is lost from TextBox, hide TextBox and show Label.
    textbox.focusout(function () {
        $(this).hide();
        $(this).prev().html($(this).val());
        $(this).prev().show();
    });
});

});

ASP.NET

  <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CellPadding="4" ForeColor="#333333" GridLines="None" Width="1000px" HorizontalAlign="Center" OnSelectedIndexChanged="GridView1_SelectedIndexChanged">
        <AlternatingRowStyle BackColor="White" ForeColor="#284775" />
        <Columns>
            <asp:TemplateField HeaderText="IDAfspraken">
                <ItemTemplate>
                    <asp:Label ID="Label4" runat="server" Text='<%# Eval("IDAfspraken") %>'></asp:Label>
                </ItemTemplate>
            </asp:TemplateField>
          </asp:GridView>

我 100% 确定我的 SQL 代码是正确的。我错过了什么吗?我非常感谢您的帮助!

错误: Error image

最佳答案

((TextBox)row.FindControl("txtEditTabel")) 的值似乎返回 null 或未定义的值,因此在尝试取消引用 .Text 时会出现 NullPointerException 属性。

您的用例似乎确实特定于您的 C# 代码,而不是 JavaScript。我最好的猜测是您应该尝试向控件添加 id 属性而不是名称。我可能是错的,但从规范来看found here on FindControl method ,您应该通过 ID 而不是名称来访问控件。

编辑: 如果您的输入位于表单内部,请尝试使用以下语法通过输入的 name 属性访问它:Request.Form["txtName"]; 而不是尝试执行 FindControl.

关于javascript - 尝试从 C# 中的文本框获取文本值时出错(ASP.NET gridview),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43621208/

相关文章:

javascript - 这是什么网络效果

javascript - 功能/对象的范围

c# - visual studio 2012 的混合在哪里

c# - 依赖注入(inject) : How to configure interface bindings for wrapping

php - 使用 PHP、MySQL 和 Google map 创建商店定位器有点不同

php - 无法在 php 中显示数据库中的图像

mysql - MyISAM 或 InnoDB - 加入速度与查找速度

javascript - 在 select2 jquery 插件中没有调用 initSelection

javascript - 使用开发工具加载时排除脚本文件

c# - 如何访问 GroupPrincipal 对象上的备注字段