hey.
I’m putting a form with a browse button on a page, so that clients can send me some pics of their own, directly to my email… heres my code for my form…
<form method="post" action="photosupload.asp" name="submit" enctype="multipart/form-data">
<font size="2">Enter your description : </font>
<input name="textfield" type="text" size="70">
<br><br>
<font size="2">Choose your photo:</font>
<input type="file" name="filefield"><br><br>
<input name="submit" type="submit" id="submit" value="Submit">
<br>
</form>
Now, I’m struggeling with the asp part… I’ve only done normal submit forms. … how do I code THAT so that the file gets send to my email?
thank you in advance…