views:

37

answers:

2

Hello, I would like to click a button and have a VBScript called to write to a table's lower half

eg:

--------
|Top
|-------
|bottom (vbscript writes to here)
--------

Is this possible? And how would I accomplish this?

+1  A: 

Generating HTML on-the-fly: http://www.suite101.com/article.cfm/vb_script/62941

Tommy
That was very close to what I was looking for.. But i found the solution. Thanks though.
tcables
If it was useful in anyway or could help someone else, don't forget that you can vote it up =)
Tommy
A: 

window.document.getElementById("tablerow1").innerHTML = "Stuff"

tcables