Go Back   Velocity Reviews > Newsgroups > ASP Net
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

ASP Net - Q: go though a dropwdownlis items

 
Thread Tools Search this Thread
Old 01-12-2006, 02:57 PM   #1
Default Q: go though a dropwdownlis items


Hello

I have TextBox1 and TextBox2 and Button1 and Button2. I also have
DropDownList1.
Now, when I click Button1 I want to concatenate “TextBox1 - TextBox2” and
add this item to DropDownList1.
If I have clicked Button2 I can to go though DropDownList1 and see what
items are there.

Can anyone write me C# code for this. I am quite new in ASP.Net environment.
Thanks,



=?Utf-8?B?SklNLkgu?=
  Reply With Quote
Old 01-12-2006, 06:54 PM   #2
=?Utf-8?B?RWx0b24gVw==?=
 
Posts: n/a
Default RE: Q: go though a dropwdownlis items
Hi Jim,

1. Add item ddl:

DropDownList1.Items.Add(TextBox1.Text + " - " + TextBox2.Text);


2. Loop thru ddl:

foreach (ListItem item in DropDownList1.Items)
{
string txt = item.Text;
}


HTH

Elton Wang

"JIM.H." wrote:

> Hello
>
> I have TextBox1 and TextBox2 and Button1 and Button2. I also have
> DropDownList1.
> Now, when I click Button1 I want to concatenate “TextBox1 - TextBox2” and
> add this item to DropDownList1.
> If I have clicked Button2 I can to go though DropDownList1 and see what
> items are there.
>
> Can anyone write me C# code for this. I am quite new in ASP.Net environment.
> Thanks,
>



=?Utf-8?B?RWx0b24gVw==?=
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
ASP.Net ListBox items highlited Catherine Murashchyk Software 0 02-01-2008 08:24 PM
Memorabilia rare items The Carpenters Karen Carpenter JJP DVD Video 1 11-20-2007 01:13 PM
Done After 9 Years of Selling on EBay gojody DVD Video 5 03-27-2007 04:17 PM
ONLINE STORE FOR SALE..PRE-STOCKED w/ 3500 BRAND NAME ITEMS..$39.95 wholesale DVD Video 1 09-26-2006 03:55 AM
AUCTION: Many Rare Items - incl. DVDs. NO RESERVES! All End Soon! UniqueGuyinPgh DVD Video 0 08-07-2003 11:57 PM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46