|
 |
aspx_beginners thread: Inser default option in Dropdownlist..
Message #1 by miss ruby <unix_box@y...> on Wed, 5 Jun 2002 05:23:48 -0700 (PDT)
|
|
Hello...
i got this code to insert default option for my
dropdownlist.. Anyway how to convert it to C#??
lstFAQs.Items.Insert(0, new ListItem("-- Choose a FAQ
--"))
Thanks...
=====
miss ruby
malaysia
__________________________________________________
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com
Message #2 by miss ruby <unix_box@y...> on Wed, 5 Jun 2002 05:33:47 -0700 (PDT)
|
|
heeloo.. hehehe.. i realize that the code is will be
same in C#.. Ok now my question is how i put the
default option on the last of the item????
thankss..
--- miss ruby <unix_box@y...> wrote:
>
> Hello...
>
> i got this code to insert default option for my
> dropdownlist.. Anyway how to convert it to C#??
>
>
> lstFAQs.Items.Insert(0, new ListItem("-- Choose a
> FAQ
> --"))
>
>
> Thanks...
>
> =====
> miss ruby
> malaysia
>
> __________________________________________________
> Do You Yahoo!?
> Yahoo! - Official partner of 2002 FIFA World Cup
> http://fifaworldcup.yahoo.com
>
=====
miss ruby
malaysia
__________________________________________________
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com
Message #3 by "Datatal AB - Gauffin, Jonas" <Jonas@d...> on Wed, 5 Jun 2002 14:39:26 +0200
|
|
lstFAQs.SelectedIndex =3D lstFAQs.Items.Count - 1
> -----Original Message-----
> From: miss ruby [mailto:unix_box@y...]
> Sent: den 5 juni 2002 14:34
> To: aspx_beginners
> Subject: [aspx_beginners] Re: Inser default option in Dropdownlist..
>
>
>
> heeloo.. hehehe.. i realize that the code is will be
> same in C#.. Ok now my question is how i put the
> default option on the last of the item????
>
>
> thankss..
>
>
>
> --- miss ruby <unix_box@y...> wrote:
> >
> > Hello...
> >
> > i got this code to insert default option for my
> > dropdownlist.. Anyway how to convert it to C#??
> >
> >
> > lstFAQs.Items.Insert(0, new ListItem("-- Choose a
> > FAQ
> > --"))
> >
> >
> > Thanks...
> >
> > =3D=3D=3D=3D=3D
> > miss ruby
> > malaysia
> >
> > __________________________________________________
> > Do You Yahoo!?
> > Yahoo! - Official partner of 2002 FIFA World Cup
> > http://fifaworldcup.yahoo.com
> >
>
>
> =3D=3D=3D=3D=3D
> miss ruby
> malaysia
>
> __________________________________________________
> Do You Yahoo!?
> Yahoo! - Official partner of 2002 FIFA World Cup
> http://fifaworldcup.yahoo.com
>
>
>
|
|
 |