Posted by slinky on 05/30/07 17:30
I'm using Visual Web Developer 2005 Express to put together a simple
email form. Some things are not working and was wondering if someone
could help my syntax. All I really need is a textbox and a submit
button. I probably have some capital letters that need changing to
lowercase for xhtml(?) Thanks!!!
<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Send Author An Email</title>
</head>
<body bgcolor="#66ffff">
<FORM METHOD="post" ENCTYPE="text/plain"
ACTION="mailto:someone@somewebsite.com">
<BR>
<BR>What do you want to write?
<INPUT TYPE="text" NAME="issue">
<BR>
<BR><INPUT TYPE="submit" VALUE="Submit">
</form>
</body>
</html>
[Back to original message]
|