Kanske fel forum med jag brukar använda javascript:
<SCRIPT language="JavaScript">
<!-- Hide from older browsers
//Check the enquiry form is filled in correctly
function CheckForm () {
//Check for a first name
if (document.frmEnquiry.firstName.value==""){
alert("Var vänlig och fyll i ditt förnamn!");
document.frmEnquiry.firstName.focus();
return false;
}
//Check for a last name
if (document.frmEnquiry.lastName.value==""){
alert("Var vänlig och fyll i ditt efternamn!");
document.frmEnquiry.lastName.focus();
return false;
}
//Check for a e-mail address
if (document.frmEnquiry.email.value=="") {
alert("Var vänlig och fyll i din e-postadress!");
document.frmEnquiry.email.focus();
return false;
}
//Check that the e-mail address is valid
if (document.frmEnquiry.email.value.length>0&&(document.frmEnquiry.email.value.indexOf("@",0)==-1||document.frmEnquiry.email.value.indexOf(".",0)==-1)) {
alert("E-postadressen verkar inte stämma! Se till att den innehåller ett @");
document.frmEnquiry.email.focus();
return false;
}
//Check for an enquiry
if (document.frmEnquiry.enquiry.value=="") {
alert("Har du skrivit något meddelande?");
document.frmEnquiry.enquiry.focus();
return false;
}
return true;
}
// -->
</script>
@ kan ju bytas ut också med http://
------------------
If ASPackad date-1 then ASPerin Now