PDA

View Full Version : Help Combobox!!


dnvthv
03-07-2006, 10:27 PM
Hi!!
e.g:
i have combobox:
.game
.app
.book
When i choose game, it jump to page game.
When i choose app, it jump to page app.
When i choose book, it jump to page book.
My english is not good. I hope you understanding!
Thank you!

yosik
03-07-2006, 11:54 PM
selected_index = ComboBox.GetSelected("ComboBox1");
If (selected_index == 1) then
Page.Jump("gamepage");
elseif (selected_index == 2) then
Page.Jump("apppage");
elseif (selected_index == 3) then
Page.Jump("bookpage";
end

Good luck

Yossi

dnvthv
03-08-2006, 05:13 AM
Thank you very much!

azmanar
03-08-2006, 07:05 AM
I have a page navigation sample called DropDown Jump On Select in this sample site (http://azman.info/ams).