gpt4 book ai didi

c# - 单列中新行上的删除和编辑按钮

转载 作者:行者123 更新时间:2023-11-28 12:59:18 25 4
gpt4 key购买 nike

我正在尝试在我的 gridview 上添加编辑、删除按钮,

<asp:CommandField HeaderText="Edit/Delete" ShowEditButton="true" ShowDeleteButton="True" />

但是现在看起来是这样的,

enter image description here

我想在新行上添加删除按钮,我该怎么做?

像这样

Edit
Delete

最佳答案

尝试首先将命令按钮转换为模板然后添加<br />在编辑按钮和删除按钮之间

UPDATE 在 Gridview Task 中,然后在“Selected Fields:”中选择要转换为 TemplateField 的命令,然后检查您的源代码。您将在 ItemTemplate 中看到

    <asp:ItemTemplate>
<asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="False"
CommandName="Edit" Text="Edit"></asp:LinkButton>
<br />
<asp:LinkButton ID="LinkButton2" runat="server" CausesValidation="False"
CommandName="Delete" Text="Delete"></asp:LinkButton>
</ItemTemplate>

关于c# - 单列中新行上的删除和编辑按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16278371/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com