请问:在ASP.NET中,添加了TextBox个主题,第一个是默认的,然后想通过dropdownlist下拉框来选择主题
发布网友
发布时间:2022-04-27 14:56
我来回答
共2个回答
热心网友
时间:2022-04-27 16:25
<style type="text/css">
.text1{ background:blue; border-color:#aabbff; border-style:ridge;}
.text2{ background:yellow; border-color:#abcdef; border-style:dotted;}
.text3{ background:green; border-color:#fedcba;}
</style>
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
if (DropDownList1.SelectedIndex == 0)
{
TextBox1.CssClass = "text1";
}
if (DropDownList1.SelectedIndex == 1)
{
TextBox1.CssClass = "text2";
}
if (DropDownList1.SelectedIndex == 2)
{
TextBox1.CssClass = "text3";
}
}
热心网友
时间:2022-04-27 17:43
在 dropdownlist的事件中用if或其它判断语句做出对文本框的显示,没有选中的不显示。