<%@ Page Language="C#" ContentType="text/html" ResponseEncoding="gb2312" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script runat="server">
void Botton1_Click(Object src,EventArgs e)
{
string DownListValue=DownList1.SelectedItem.Text;
labell.Text=DownListValue;
}
</script>
</head>
<body>
<form runat="server">
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse:collapse" bordercolor="#111111" width="100%">
<tr>
<td width="100%" align="center" bgcolor="#ffff00">
DropDownList控件演示例子
</td>
</tr>
</table>
请选择一个青春组合:
<p>
<asp:DropDownList id="DownList1" runat="server">
<asp:ListItem>--请选择一个青春组合--</asp:ListItem>
<asp:ListItem>中国力量</asp:ListItem>
<asp:ListItem>漂亮宝贝</asp:ListItem>
<asp:ListItem>青春美少女</asp:ListItem>
<asp:ListItem>动感男孩</asp:ListItem>
</asp:DropDownList>
<p>
<asp:Button id="Botton1" Text="选择" Onclick="Botton1_Click" runat="server">
<br>
<br>
您选择的组合是:
<asp:label id="labell" Text="暂没有选择!" ForeColor="red" runat="server">
</form>
</body>
</html>
本人是一个初学者,提出的问题请不要见笑啊!本人实在看不出哪里有错啊,请各位师哥师姐帮帮忙!小弟在此谢谢了!