ÓÐÁ½¸öÁбí¿ò£¨listbox2ºÍlistbox3£©£¬Í¨¹ýÒ»¸öÁбí¿ò¿ÉÒÔÏòÁíÒ»¸öÁбí¿òÖÐÌí¼Ó»òÕßɾ³ýÄÚÈÝ¡£
´úÂëÈçÏ£º
public partial class xiaoya : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = "Äã×îϲ»¶µÄÔ˶¯ÊÇ£º" + ListBox1.SelectedItem.Text;
}
protected void Button2_Click(object sender, EventArgs e)
{
for (int i = 0; i < ListBox2.Items.Count; i++)
ListBox3.Items.Add(ListBox2.Items[i]);
}
protected void Button3_Click(object sender, EventArgs e)
{
for (int i = 0; i < ListBox2.Items.Count; i++)
if (ListBox2.Items[i].Selected)
ListBox3.Items.Add(ListBox2.Items[i]);
}
protected void Button4_Click(object sender, EventArgs e)
{
for (int i = ListBox3.Items.Count - 1; i <= 0; i--)
if (ListBox3.Items[i].Selected)
ÓÃDWдµÄaspxºÍvs C#дµÄÍøÕ¾ÏµÍ³(Ö÷ÒªÒ³ÃæÎļþÒ²ÊÇaspxµÄÎļþ)ÓÐÊ²Ã´Çø±ð,VSдµÄÍøÕ¾·¢²¼ºó,ËùÓеĴúÂ벿·ÖºÏ³ÉÒ»¸öDLLÎļþ,¶øDW¾ÍûÓа취,ÕâÁ½¸ö¹¤¾ßд³öÀ´µÄÍøÕ¾Í¬ÑùÊÇaspxµÄÎļþ,µ«Çø±ðºÜ´ó°¡.
°ïÄã¶¥ÏÂ~£¬Çó ......