在项目中添加一个新的网页,在网页上添加一个TextBox控件、三个ImageButton

在项目中添加一个新的网页,在网页上添加一个TextBox控件、三个ImageButton控件、一个DropDownList控件、一个ListBox控件,实现点击第一个Im... 在项目中添加一个新的网页,在网页上添加一个TextBox控件、三个ImageButton控件、一个DropDownList控件、一个ListBox控件,实现点击第一个ImageButton控件时把TextBox中输入的内容同时添加到DropDownList控件和ListBox控件内;点击第二个ImageButton控件时删除DropDownList控件中当前选中项;点击第三个ImageButton控件时删除ListBox控件中选中项,无选中项时提示用户选中;当选择DropDownList控件或者ListBox控件中选项时把当前选中项显示在TexBox控件中。 展开
 我来答
bakeviolinn
2016-08-24 · TA获得超过421个赞
知道小有建树答主
回答量:422
采纳率:0%
帮助的人:241万
展开全部
protected void Page_Load(object sender, EventArgs e)
{
}
protected void ImageButton1_Click(object sender, ImageClickEventArgs e)
{
string Txt = TextBox1.Text;
DropDownList1.Items.Add(new ListItem(Txt, Txt));
ListBox1.Items.Add(new ListItem(Txt, Txt));
}
protected void ImageButton2_Click(object sender, ImageClickEventArgs e)
{
int index = DropDownList1.SelectedIndex;
DropDownList1.Items.RemoveAt(index);
}
protected void ImageButton3_Click(object sender, ImageClickEventArgs e)
{
int index = ListBox1.SelectedIndex;
ListBox1.Items.RemoveAt(index);
}
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
if (sender.GetType().Name == "DropDownList")
{
TextBox1.Text = DropDownList1.SelectedItem.Text;
}
else {
TextBox1.Text = ListBox1.SelectedItem.Text;
}
}
<html xmlns=" http://www.w3.org/1999/xhtml">
<head runat="server">
<title>无标题页</title>
<script type="text/javascript">
function vali() {
var index = document.getElementById("ListBox1").selectedIndex;
if (index < 0) {
alert("请选择!");
return false;
}
return true;
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><br />
<asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/img/01.jpg"
onclick="ImageButton1_Click" />
<br />
<asp:ImageButton ID="ImageButton2" runat="server" ImageUrl="~/img/01.jpg"
onclick="ImageButton2_Click" />
<br />
<asp:ImageButton ID="ImageButton3" runat="server" ImageUrl="~/img/01.jpg"
onclick="ImageButton3_Click" OnClientClick="javascript:return vali();"/>
<br />
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True"
onselectedindexchanged="DropDownList1_SelectedIndexChanged">
</asp:DropDownList><br />
<asp:ListBox ID="ListBox1" runat="server"
onselectedindexchanged="DropDownList1_SelectedIndexChanged" AutoPostBack="True"></asp:ListBox><br />
</div>
</form>
</body>
</html>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式