求asp的留言板代码

来源:百度知道 编辑:UC知道 时间:2024/06/07 14:34:05
求一个比较好的留言板代码,最好是可以输入验证码的,能插入图片的更好。
请发到我的邮箱:412134791@qq.com
请注明是发件人的百度昵称我好加分。。。。。。。。谢谢
这东西不会用

<link href="../../css/user.css" rel="stylesheet" type="text/css">
<script language="JavaScript" src="../../js/common.js"></script>
<script language="JavaScript" src="../../js/ubbcode.js"></script>

<script language="JavaScript">
function formCheck()
{

if (document.theform.nickname.value == "")
{
alert("请填写名字。");
document.theform.nickname.focus();
return false;
}

if (document.theform.content.value == "")
{
alert("请填写留言内容。");
document.theform.content.focus();
return false;
}
theform.Submit.disabled=true;
return true;
}

function showimage()
{
document.images.faceimg.src=face_image[parseInt(document.theform.face.options[document.theform.face.selectedIndex].value)];
}