gpt4 book ai didi

html - asp 文本框必填字段验证器消息定位

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

我使用 asp:RequiredFieldValidator 来验证文本框。它工作正常。但是我需要更改错误消息的位置。

<div class="form-group">
<label for="txtGarageName" class="col-sm-2 control-label">Garage Name</label>
<asp:TextBox runat="server" placeholder="Garage Name" CssClass="form-control" Width="50%" ID="txtGarageName"></asp:TextBox>
<asp:RequiredFieldValidator id="RequiredFieldValidator1" runat="server"
ControlToValidate="txtGarageName"
ErrorMessage="Garage name is a required field."
ForeColor="Red">
</asp:RequiredFieldValidator>
</div>

当我使用此错误消息时,从标签的正下方开始显示。我需要做的是让错误消息显示在文本框前面或将其与 TextBox 起点对齐,这意味着将其更靠右对齐。我试过使用 css 代码以及放置

margin-left=""

我在互联网上看到的解决方案。两者都无法正常工作。

最佳答案

为您的文本框使用 col-md-6span6 CSS 类将适合您

<asp:TextBox runat="server" placeholder="Garage Name" CssClass="form-control span6"  ID="txtGarageName"></asp:TextBox>

<asp:RequiredFieldValidator id="RequiredFieldValidator1" runat="server"
ControlToValidate="txtGarageName"
ErrorMessage="Garage name is a required field."
ForeColor="Red">
</asp:RequiredFieldValidator>

关于html - asp 文本框必填字段验证器消息定位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29349025/

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