D DaveF Dec 30, 2004 #1 I need to capture a selected value of the onchange dropdown and put it in a textbox???
J John Saunders Dec 30, 2004 #2 DaveF said: I need to capture a selected value of the onchange dropdown and put it in a textbox??? Click to expand... What problem are you experiencing when you try to do this? John Saunders
DaveF said: I need to capture a selected value of the onchange dropdown and put it in a textbox??? Click to expand... What problem are you experiencing when you try to do this? John Saunders
D DaveF Dec 30, 2004 #3 I just don't know how to do this clietside -- David Fetrow Helixpoint LLC. http://www.helixpoint.com (e-mail address removed)
I just don't know how to do this clietside -- David Fetrow Helixpoint LLC. http://www.helixpoint.com (e-mail address removed)
J John Saunders Dec 30, 2004 #4 DaveF said: I just don't know how to do this clietside Click to expand... Ok, you didn't say you had to do it client side! I'm not a JavaScript wizard, but I suppose that you have to get an "onchange" event on the dropdown. That event should do something like "textbox.value = dropdown.value;". You can add a client-side event to a server-side control via: dropdown.Attributes("onchange") = "textbox.value = dropdown.value;" John Saunders
DaveF said: I just don't know how to do this clietside Click to expand... Ok, you didn't say you had to do it client side! I'm not a JavaScript wizard, but I suppose that you have to get an "onchange" event on the dropdown. That event should do something like "textbox.value = dropdown.value;". You can add a client-side event to a server-side control via: dropdown.Attributes("onchange") = "textbox.value = dropdown.value;" John Saunders