Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old December 15th, 2006, 03:05 PM
Michael McGrew
Guest
 
Posts: n/a
Default Update form field from vbscript sub

I have a asp form that has a dynamic drop-down box that a user selects
a value from. Once the user makes a selection I use the onChange event
to capture the selection and pass this value to a vbscript sub. The sub
then makes a adsi query using this value to retrieve additional
information. This all works. I used a msgbox to display the retrieved
value and it is correct. My problem is how do I update a field on the
form with this retrieved value?

  #2  
Old December 15th, 2006, 03:45 PM
Bob Barrows [MVP]
Guest
 
Posts: n/a
Default Re: Update form field from vbscript sub

Michael McGrew wrote:
Quote:
I have a asp form that has a dynamic drop-down box that a user selects
a value from. Once the user makes a selection I use the onChange event
to capture the selection and pass this value to a vbscript sub. The
sub then makes a adsi query using this value to retrieve additional
information. This all works. I used a msgbox to display the retrieved
value and it is correct. My problem is how do I update a field on the
form with this retrieved value?
This isn't really an asp issue, is it. You would be asking the same
question if your page had a .htm extension. Client-side scripting
questions should be posted to one of the .scripting groups: in this case
microsoft.public.scripting.vbscript. Of course, you will have to deal
with the replies ridiculing your use of vbscript in client-side code
(because it restricts your users to IE), but once you get past that, you
should get some help.

Having said that, you need to use the document.GetElementById method
toget a reference to the "field" and then set its value property to the
data retrieved from adsi.


sub GetADSIValue()
dim valuefromadsi
'get the value from adsi and assign it to the variable; then:
dim obj
set obj=document.GetElementById("id_of_field")
obj.value= valuefromadsi
end sub

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


 

Bookmarks

Thread Tools

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

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

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles