Additionally, I wanted to know if I could add a label to the code. For example, in the name field, I wanted to know if I can "pre-fill" the text box with text such as "Fill in your name here." The user would then erase that text and fill in their name. Hopefully that makes sense? (See www.tumblr.com for an example of this)
Here is the code that I have that *should* work but doesn't. I added the "label for=..." line. Can you tell if I'm missing something?
>Response.WriteLn([ <fieldset>]) Response.WriteLn([ <legend>Name</legend>]) Response.WriteLn([ <div class="required">]) Response.WriteLn([ <label for="txtName">Please Enter Your Name</label>]) Response.WriteLn([ <input name="txtName" id="txtName" class="inputTextarea" size="50"></input>]) Response.WriteLn([ <small>Must be 50 characters or less.<br /><div id="charlimitinfo"></div></small>]) Response.WriteLn([ </div>]) Response.WriteLn([ </fieldset>]) <