如何用Macromedia Dreamweaver MX 2004制作留言板?

来源:百度知道 编辑:UC知道 时间:2024/05/15 10:37:11
例如在几个文本框里填上对方的E-mail、姓名、内容之后按“提交”,对方所写的内容的就自动发到我指定的邮箱上。我就是不会连接,应该怎么做?
或者哪个大侠帮我制作,把连接指向jp893@126.com这个邮箱。
楼下的朋友,怎么没有内容填写的地方呢?
还有怎样才能指向我的邮箱?

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>简单的留言本</title>
<script language="JavaScript">
function inputnumber()
{
if (event.keyCode>47 && event.keyCode<58)
return true
else
alert("请输入数字,不要留下字母!!!");
return false;
}
function chkform()
{
if (form1.Guestname.value =="")
{
alert("请留下您的大名!");
form1.Guestname.focus();
form1.Guestname.select();
return false;
}
if (form1.address.value =="")
{
alert("您还没有留下地址!");
form1.address.focus();
form1.address.select();
return false;
}

if (form1.phone.value =="")
{
alert("请留下您的电话,方便我们尽快联系您!");
form1.phone.focus();
form1.phone.select();
return false