gpt4 book ai didi

.net - 将 CSS 应用于 formview 控件中的文本框

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

我正在尝试将 css 样式应用于窗体 View 中的文本框。执行此操作的正确方法是什么,因为表单未应用下面的样式是我尝试应用代码的代码的一部分

<asp:FormView ID="FormView1" runat="server" BackColor="White" 
BorderColor="#3366CC" BorderStyle="None" BorderWidth="1px" CellPadding="4"
DataKeyNames="pappid" DataSourceID="applicantsbypappid" GridLines="Both">
<ItemTemplate>
<%-- pappid:--%>
<asp:Label ID="pappidLabel" runat="server" Text='<%# Eval("pappid") %>' />
<br />

<asp:Label ID="lblapplicantname" runat="server" CssClass="labels" Text="Applicant's Name:">
</asp:Label>
<asp:TextBox ID="txtapplicantfname" runat="server" Text='<%# Bind("pappfname") %>'></asp:TextBox>
<asp:TextBox ID="txtapplicantmname" runat="server" Text='<%# Bind("pappmname") %>'></asp:TextBox>
<asp:TextBox ID="txtapplicantlname" runat="server" Text='<%# Bind("papplname") %>'></asp:TextBox>

CSS代码

#txtapplicantfname
{
width: 70px;
border-bottom: 1px solid #0954A5;
border-left-style: none;
border-left-color: inherit;
border-left-width: 0;
border-right-style: none;
border-right-color: inherit;
border-right-width: 0;
border-top-style: none;
border-top-color: inherit;
border-top-width: 0;
font-size: 10px;
}

最佳答案

我建议您直接分配 css,因为服务器端控件 ID 在完整的层次结构中呈现并串联。与您的情况一样,将有一个 Content Place Holder 和一个 Textbox (ctl00_ContentPlaceHolder_txtapplicantfname)。如果还有更多的面板; Tab Panel(ctl00_ContentPlaceHolder_TabPanelID_txtapplicantfname)等涉及的层级会被打乱。

你可以这样做......

<asp:TextBox ID="txtapplicantfname" CssClass="txtapplicantfname"  runat="server" Text='<%# Bind("pappfname") %>'></asp:TextBox>


.txtapplicantfname
{
width: 70px;
border-bottom: 1px solid #0954A5;
border-left-style: none;
border-left-color: inherit;
border-left-width: 0;
border-right-style: none;
border-right-color: inherit;
border-right-width: 0;
border-top-style: none;
border-top-color: inherit;
border-top-width: 0;
font-size: 10px;
}

关于.net - 将 CSS 应用于 formview 控件中的文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6165190/

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