Discussions
Categories
Groups
Advertisement
Child Item
Home
Topics
Technology & Internet
Software & Web Development
Development
vbscript syntax
writeaccess
This probably seems very basic but i cant find it anywhere.
I want to modify this bit of script in an asp file to make a hidden textbox with a predefined value ie "NA"
<%textbox "state",pState,20, "textbox"%>
Any help would be great
Find more posts tagged with
Quick Links
All Categories
Recent Posts
Activity
Unanswered
Groups
Best Of
Advertisement
Advertisement
Comments
Talliesin
You'll need to post the sub that calls as well.
str8_away
If you want to create a hidden input box on you web page, all you need to do is use "response.write" to write out html code.
ie
<% response.write "<input type=""hidden"" name=""something"" value=""NA"">" %>
OR
<% response.write "<input type='hidden' name='something' value='NA'>" %>
for this input box to mean anything you will nee to have <form> on your page too.
writeaccess
Thanks A million That works fine.