Jun 29, 2001 #1 Guest_imported New member Joined Jan 1, 1970 Messages 0 How can I modify the value of text boxes through vbScript?
Jun 30, 2001 #2 vrhitman Programmer Joined Jul 24, 2000 Messages 4 Location US Hi, If you are working in an asp page, the easy way to do this is: response.write("<input type'text' name='txt1' value='" & ASP_VARIABLE_HERE & '>" Otherwise you'll have to use a form object and call the name of the form and the value paramater. For example, document.MainForm.TextEntryBox.Value = "foobar" Hope this helps! Mike Upvote 0 Downvote
Hi, If you are working in an asp page, the easy way to do this is: response.write("<input type'text' name='txt1' value='" & ASP_VARIABLE_HERE & '>" Otherwise you'll have to use a form object and call the name of the form and the value paramater. For example, document.MainForm.TextEntryBox.Value = "foobar" Hope this helps! Mike