I have an app that, amongst other things, opens a web page. I want to populate form fields on that page dynamically, but can’t figure out how to pass those values. So, to simplify my question, I have the following field on my web page:
input type="text" name="T2" size="20"
I thought I could add the value for that field in my link, such as:
http://www.mysite.com/mypage.htm?T2.value="MyValue"
But that doesn’t work. Any suggestions as to what I’m doing wrong?