[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

support

10/21/2008 8:44:00 PM

In dotNet, I want to have cascading pulldown menus.
Hence, the items are:
{ a, b, cx, cy, cz, d},
but I don't want to show cx, cy, cz unless the user selected one of the c's.
Does anyone know a clever way to do this?
I guess I have to write a menu to handle this. Any pointers to examples?


1 Answer

Nathan Sokalski

10/24/2008 12:40:00 AM

0

Have you ever used the ASP.NET AJAX Control Toolkit? If not, it is a
wonderful thing to know about, and one of the controls it offers is
CascadingDropDown, which is basically what you are asking for. You can see
an example and documentation at:

http://www.asp.net/AJAX/AjaxControlToolkit/Samples/CascadingDropDown/CascadingDro...

I will admit that I have never used this specific control, but I have used
many of the others, all of which are wonderful, and the toolkit itself is
starting to become very popular (and it is built in to ASP.NET 3.5).
Hopefully this is what you are looking for.
--
Nathan Sokalski
njsokalski@hotmail.com
http://www.nathansok...

"support" <supportNOSPAM@people-places-work.info> wrote in message
news:OtjWb27MJHA.5696@TK2MSFTNGP03.phx.gbl...
> In dotNet, I want to have cascading pulldown menus.
> Hence, the items are:
> { a, b, cx, cy, cz, d},
> but I don't want to show cx, cy, cz unless the user selected one of the
> c's.
> Does anyone know a clever way to do this?
> I guess I have to write a menu to handle this. Any pointers to examples?
>
>