<asp:DropDownList id="DropDownList1" runat="server" Width="88px"  BorderStyle="None"></asp:DropDownList>
<asp:TextBox id="TextBox5" runat="server" Width="94px" 
BorderStyle="None"></asp:TextBox>
用的是.net2003,有没有办法可以使dropdownlist的BorderStyle="None"生效呢!?
DropDownList的属性中没有BorderStyle="None",有解决的办法没?

解决方案 »

  1.   

    试试看用style="BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; POSITION: absolute; TOP: 288px; BORDER-BOTTOM-STYLE: none"
      

  2.   

    <asp:DropDownList id="DropDownList1" style="....." runat="server">
      

  3.   

    dropdownlist不能设置边框粗细,三角的颜色等等属性,它就是一个html的select。
    你去试试checkbox 和 radiobutton,他们的边框样式也是不能改的。