asp_web_howto thread: add hidden input type
anyone have a clue why this doesn't work...
I only have to support IE on this so I'm using VBS
I'm trying to creat a hidden input type dynamically
sub btnSave_onclick()
set newobj = document.createElement("input")
newobj.type="hidden"
newobj.name="fkErrCat"
newobj.value=aForm.aSelectBox.value
aForm.add(newobj)
end sub
I get a runtime object doesn't support this method
aForm.add()
any one know why?
|





