gpt4 book ai didi

asp.net - ASP :changePassword cellpadding

转载 作者:太空宇宙 更新时间:2023-11-04 15:21:54 30 4
gpt4 key购买 nike

所以我使用 asp:changePassword 来显示允许用户显示密码的表单;然后我将面板居中放置在屏幕上。但是我想在行之间添加间距/单元格填充:到目前为止我有:

<div style="position:relative;left:300px;top:100px;padding:10px;">
<asp:ChangePassword ID="ChangePassword2" CancelDestinationPageUrl="~/Default.aspx" ContinueDestinationPageUrl="~/Default.aspx" runat="server">

</asp:ChangePassword>
</div>

我试过:TextBoxStyle-CssClass & BorderPadding 并尝试将 div 定位在 changePassword 内并使用“class”将其居中。

我看到有一个然后创建表和行等...

有没有更简单的方法来做到这一点?我想要做的就是用'cellpadding = 5px'分隔changePassword面板中的每一行

请指教谢谢

编辑:

<div style="position:relative;left:300px;top:100px;padding:10px;">      
<asp:GridView ID="GV" runat="server" CellPadding="0" CellSpacing="0">
<asp:ChangePassword ID="ChangePassword2" BorderColor="#E6E2D8" BorderPadding="4" BorderStyle="Solid"
BorderWidth="1px" CancelDestinationPageUrl="~/Default.aspx" ContinueDestinationPageUrl="~/Default.aspx" runat="server">
</asp:ChangePassword>
</asp:GridView>
</div>

最佳答案

我认为您需要使用 GridView 控件。然后在标记中,确保将 cellpadding 和 cellspacing 设置为零,然后应用以下 CSS...

table { border-collapse: collapse; }
table tr, table td, table th { border: solid 5px #000; margin: 0; padding: 0; }

关于asp.net - ASP :changePassword cellpadding,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14480277/

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