如何在消息框中显示ID?

时间:2017-01-20 03:29:18

标签: javascript c# asp.net gridview messagebox

我目前正在开发一个网站。我的外部js文件中有一个代码

function DeleteConfirm(rfqcodeLB) {
    var confirm_value = document.createElement("INPUT");
    confirm_value.type = "hidden";
    confirm_value.name = "confirm_value";
    if (confirm("Are you sure you want to delete" + rfqcodeLB +" ?")) {
        confirm_value.value = "Yes";
    } else {
        confirm_value.value = "No";
    }
    document.forms[0].appendChild(confirm_value);
}

我想要做的是获取gridview中所选行的id。我所做的是将选定的代码转换为rfqcodeLB的字符串。然后将属性放在按钮上。但它显示为null。

有人可以帮帮我吗?感谢。

<asp:ImageButton ImageUrl="../Pictures/Icons/deleteblack.png" runat="server" OnClick="Unnamed_Click" ID="deleteBT" OnClientClick="return DeleteConfirm(ContentPlaceHolder1_rfqcodeLB);"/>

2 个答案:

答案 0 :(得分:0)

将id作为函数参数传递,而不是ContentPlaceHolder1_rfqcodeLB,请使用this.id。

答案 1 :(得分:0)

您需要将RowIndex发送到JavaScript函数。不是this.id,只能获取ImageButton的ID。

<asp:ImageButton OnClientClick='<%# "return DeleteConfirm(" + Container.DataItemIndex + ");" %>' ImageUrl="../Pictures/Icons/deleteblack.png" runat="server" OnClick="Unnamed_Click" ID="deleteBT"/>

或者,如果您想要数据库值

OnClientClick='<%# "return DeleteConfirm(&#39;" + Eval("yourID") + "&#39;);" %>'