2

このグリッドビューに、、がgridviewありlinkbuttonます。

リンクボタンがクリックrowCommandされると起動しますが、確認ボックスでクリックを確認してもらいたいのですが、

  • はいの場合->rowCommandが起動し、
  • いいえ->何も起こらない場合。

私はそれへの道を見つけることができませんでした。

4

3 に答える 3

7

これをLinkBut​​tonのOnClientClickプロパティとして追加します。

OnClientClick="return confirm('Do you really want?');"
于 2012-03-16T16:49:48.077 に答える
2

これを試して。

if (e.Row.RowType == DataControlRowType.DataRow){  
 LinkButton link = (LinkButton)e.Row.FindControl("LinkButton1");    
 link .Attributes.Add("onclick", "return confirm('Are you sure to proceed with this 
action?');");
}
于 2012-03-16T17:58:23.927 に答える
0

背後にある私のコードで:

if (e.Row.RowType == DataControlRowType.DataRow)
{
    LinkButton del = e.Row.Cells[2].Controls[0] as LinkButton;
    del.Attributes.Add("onclick", "return confirm('Are you sure you want to delete this role?');");
}

そして私のマークアップで:

<asp:GridView
    ID="GridViewRoles"
    runat="server"
    Width="350px"
    EmptyDataText="No Roles"
    AutoGenerateColumns="False"
    AllowPaging="False"
    PageSize="50"
    AllowSorting="True"
    CssClass="gridview"
    AlternatingRowStyle-CssClass="even"
    OnRowCommand="GridViewRoles_RowCommand"
    OnRowDataBound="GridViewRoles_RowDataBound"
    OnRowDeleting="GridViewRoles_RowDeleting" OnRowEditing="GridViewRoles_RowEditing">
    <Columns>

        <asp:BoundField DataField="Role" HeaderText="Role" SortExpression="Role" HeaderStyle-Width="170px" HeaderStyle-HorizontalAlign="Left" />
        <asp:ButtonField CommandName="Edit" Text="Edit" HeaderStyle-Width="50px" />
        <asp:CommandField ShowDeleteButton="True" />

    </Columns>
    <AlternatingRowStyle CssClass="even" />
</asp:GridView> 
于 2016-09-15T23:08:53.033 に答える