Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_web_howto thread: add hidden input type


Message #1 by "O'Hara, Elliott M" <EMOHARA@k...> on Tue, 22 May 2001 10:17:27 -0400
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?




  Return to Index