invision
08-10-2007, 04:57 AM
Hello,
I'm trying a little something for the company Intranet and using ASP..unsuccessfully so far.
Just a really basic HTML page :
<form action="V:\contact/contact.asp" method="post">
<p>
<label for="textinput">Name : </label>
<input type="text" id="textinput" name="textinput" class="textinput" maxlength="25" />
</p>
<p> <br />
<label for="label">Your department : </label>
<select size="1" id="select" name="select">
<option selected="selected" value="Test area no.2">Test area no.2</option>
<option value="Another test">Another test</option>
<option value="And another one">And another one</option>
<option value="And yet another one">And yet another one</option>
<option value="One last option for me">One last option for me</option>
</select>
<label for="label2"><br>
Subject : </label>
</p>
<p>
<select size="1" id="mySelect2" name="mySelect2">
<option selected="selected" value="Test area no.2">Test area no.2</option>
<option value="Another test">Another test</option>
<option value="And another one">And another one</option>
<option value="And yet another one">And yet another one</option>
<option value="One last option for me">One last option for me</option>
</select>
</p>
<p> </p>
<p><label for="textareainput">Comments:</label>
<textarea id="textareainput" name="textareainput" class="textarea"></textarea><br />
<input type="submit" value="Submit" class="buttonSubmit" /></p>
<div id="stylesheetTest"></div>
</form>
And need some ASP to send the email. I've tried tutorials on the net, but to no avail. I've also tried coding to
Any pointers?
I'm trying a little something for the company Intranet and using ASP..unsuccessfully so far.
Just a really basic HTML page :
<form action="V:\contact/contact.asp" method="post">
<p>
<label for="textinput">Name : </label>
<input type="text" id="textinput" name="textinput" class="textinput" maxlength="25" />
</p>
<p> <br />
<label for="label">Your department : </label>
<select size="1" id="select" name="select">
<option selected="selected" value="Test area no.2">Test area no.2</option>
<option value="Another test">Another test</option>
<option value="And another one">And another one</option>
<option value="And yet another one">And yet another one</option>
<option value="One last option for me">One last option for me</option>
</select>
<label for="label2"><br>
Subject : </label>
</p>
<p>
<select size="1" id="mySelect2" name="mySelect2">
<option selected="selected" value="Test area no.2">Test area no.2</option>
<option value="Another test">Another test</option>
<option value="And another one">And another one</option>
<option value="And yet another one">And yet another one</option>
<option value="One last option for me">One last option for me</option>
</select>
</p>
<p> </p>
<p><label for="textareainput">Comments:</label>
<textarea id="textareainput" name="textareainput" class="textarea"></textarea><br />
<input type="submit" value="Submit" class="buttonSubmit" /></p>
<div id="stylesheetTest"></div>
</form>
And need some ASP to send the email. I've tried tutorials on the net, but to no avail. I've also tried coding to
Any pointers?