|
I am now trying to create directory submition software in Visual basic so I need basic help for my project.
I want to pass values in text field of form, and I have tried these code but its not working.
By ID:
javascript:document.getElementById('<TextBox_ID>') .value = '<Value>';
By Name :
Javascript:document.getElementsByName('<TextBox_Na me>')[0].value = '<Value>';
Any one can help?
|