Hello folks.
This is my first posting to the HTML forum. Also, my first foray into HTML for work (I've dinked around with it at home a little.). All this to say that I ask your patience if I sound like I actually am ... lost and confused. Thanks.
I have this website I am trying to automate via MS FoxPro. It is going well so far.
A problem I've encountered that I can't get around is with a table that has a cell (is that what you call a "TD" tag?) in it. Here's the code for it:
By the way, I put that little bit in there about
. But that is what I'm trying to do. I'm trying to automate the population of that cell.
The thing I've learned is that as long as the type=file, my code above (value="mike"
doesn't have any effect on the page, and there is a "browse" button beside the text field. If, however, I change it so that type=text, then it works (and the "browse" button disappears), that is, "mike" shows up in the table cell on the page (I don't know if "text" is good code, I just played around with it. I also typed in type=monkey and "mike" popped up in the table cell as well. I assume that when it doesn't understand a property setting, it goes to a default, which is....text?? I don't know.)
Since I can't change the type of the cell on the website (the page I'm playing around with is a downloaded copy of the website, downloaded to my desktop), I need to know how to populate this field on the website with a value (path to a file and filename).
Any help you can provide is greatly appreciated.
Thanking you in advance.
-Mike
This is my first posting to the HTML forum. Also, my first foray into HTML for work (I've dinked around with it at home a little.). All this to say that I ask your patience if I sound like I actually am ... lost and confused. Thanks.
I have this website I am trying to automate via MS FoxPro. It is going well so far.
A problem I've encountered that I can't get around is with a table that has a cell (is that what you call a "TD" tag?) in it. Here's the code for it:
Code:
<TD class=dcell vAlign=top align=middle><INPUT class=tInput
type=file size=25 value="mike" name=eddFile></TD></TR>
Code:
value="mike"
The thing I've learned is that as long as the type=file, my code above (value="mike"
Since I can't change the type of the cell on the website (the page I'm playing around with is a downloaded copy of the website, downloaded to my desktop), I need to know how to populate this field on the website with a value (path to a file and filename).
Any help you can provide is greatly appreciated.
Thanking you in advance.
-Mike