Hallo,
ich muss in DV ein Eingabeformular mit Überprüfung in FrontPage programmieren. Das ging soweit schon, aber mein Problem ist, dass ich es nicht hinbekomme, dass der Cursor auf Straße springt, wenn der user vergessen hat seine Straße einzugeben. Weiß jemand wie das geht?
bis jetzt hab ich folgendes programmiert:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Eingabeformular</title>
<style type="text/css">
a:active {font-family: Helvetica;Arial; font-size: 10pt;color:#0000CC;text-decoration:none;}
a:visited {font-family: Helvetica;Arial; font-size: 10pt;color:#0000CC;text-decoration:none;}
a:hover {font-family: Helvetica;Arial; font-size: 10pt;color: red;text-decoration:underline;}
body { background-color:#02EEEE;}
p{}
div{ border-color:blue;}
tr{}
td{}
h1{font-family: Helvetica;Arial; font-size: 12pt;color: blue; text-decoration:underline}
h2{}
</style>
<script type="text/JavaScript">
function chkEingabeformular() {
{
var Fehlermeldung = "";
if(document.Eingabeformular.name.value =="")
{
Fehlermeldung+="Bitte geben sie Ihren Namen an!\n";
}
if(document.Eingabeformular.Strasse.value =="")
{
Fehlermeldung+="Bitte geben sie Ihre Straße an!\n";
}
if(document.Eingabeformular.plz_ort.value =="")
{
Fehlermeldung+="Bitte geben sie Ihren Wohnort und ihre Postleitzahl an!\n";
}
if(document.Eingabeformular.email.value =="")
{
Fehlermeldung+="Bitte geben sie Ihre E-mail Adresse an!\n";
}
if(document.Eingabeformular.kommentar.value =="")
{
Fehlermeldung+="Bitte geben sie einen Kommentar ein!\n";
}
if (Fehlermeldung)
{
alert(Fehlermeldung);
return false;
}
else
{
return true;
}
}
//-->
}
</script>
</head>
<body>
<table border="0" width="675" height="278">
<form action="input_text.htm" name="Eingabeformular" method="post" onsubmit="chkEingabeformular ()">
<td height="270" width="218">
<p style="line-height: 100%; margin-top: -1; margin-bottom: -1">
<input type="checkbox" name="bitte_anrufen" value="ON">Bitte
rufen Sie uns an
<p style="line-height: 100%; margin-top: -1; margin-bottom: -1">
<p style="line-height: 100%; margin-top: -1; margin-bottom: -1"> </p>
<p style="line-height: 100%; margin-top: 0; margin-bottom: 0">Name:<br><input name="user" type="text" size="30" maxlength="30"></p>
<p style="line-height: 100%; margin-top: 0; margin-bottom: 0">Strasse:<br><input name="Strasse" type="text" size="30" maxlength="30"></p>
<p style="line-height: 100%; margin-top: 0; margin-bottom: 0">PLZ/Ort:<br><input name="plz_ort" type="text" size="30" maxlength="30"></p>
<p style="line-height: 100%; margin-top: 0; margin-bottom: 0">Tel.:<br><input name="tel" type="text" size="30" maxlength="30"></p>
<p style="line-height: 100%; margin-top: 0; margin-bottom: 0">EMail:<br><input name="email" type="text" size="30" maxlength="30"></p>
<p style="line-height: 100%; margin-top: 0; margin-bottom: 0">Internet:<br><input name="internet" type="text" size="30" maxlength="30"></p>
<td width="443" rowspan="7" height="274">
<form action="textarea.htm"
<p> Kommentar:<br>
<textarea name="kommentar" cols="50" rows="15" </textarea>
</textarea>
</td>
<tr>
<td height="33" width="218">
<input type="submit" value="Absenden">
</tr>
</form>
</table>
<p> </p>
<table border="0" width="647" cellspacing="0" cellpadding="0">
<tr>
<td width="200"><font size="3">Firmenname</font></td>
<td width="218" align="left"><font size="3">Tel. Einkauf/Verkauf:</font></td>
<td width="255"><font size="3">Telefonnummer</font></td>
</tr>
<tr>
<td width="200"><font size="3">Straße</font></td>
<td width="218" align="left"><font size="3">Tel. Einkauf/Verkauf:</font></td>
<td width="255"><font size="3">Telefonnummer</font></td>
</tr>
<tr>
<td width="200"><font size="3">Postfach</font></td>
<td width="218" align="left"><font size="3">Tel. Buchhaltung:</font></td>
<td width="255"><font size="3">Telefonnummer</font></td>
</tr>
<tr>
<td width="200"><font size="3">D - PLZ</font></td>
<td width="218" align="left"></td>
<td width="255"></td>
</tr>
<tr>
<td width="200"></td>
<td width="218" align="left"><font size="3">Telefax:</font></td>
<td width="255"><font size="3">Telefaxnummer</font></td>
</tr>
<tr>
<td width="200"><a href="http://"><font size="3">Firmen Infos</font></a></td>
<td width="218" align="left"><a href="mailto:abc@abc.de"><font size="3">eMail</font></a></td>
<td width="255"></td>
</tr>
</table>
</body>
</form>
</script>
Danke schonmal für eure antworten!!!
Lg, Dragostea
ich muss in DV ein Eingabeformular mit Überprüfung in FrontPage programmieren. Das ging soweit schon, aber mein Problem ist, dass ich es nicht hinbekomme, dass der Cursor auf Straße springt, wenn der user vergessen hat seine Straße einzugeben. Weiß jemand wie das geht?
bis jetzt hab ich folgendes programmiert:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Eingabeformular</title>
<style type="text/css">
a:active {font-family: Helvetica;Arial; font-size: 10pt;color:#0000CC;text-decoration:none;}
a:visited {font-family: Helvetica;Arial; font-size: 10pt;color:#0000CC;text-decoration:none;}
a:hover {font-family: Helvetica;Arial; font-size: 10pt;color: red;text-decoration:underline;}
body { background-color:#02EEEE;}
p{}
div{ border-color:blue;}
tr{}
td{}
h1{font-family: Helvetica;Arial; font-size: 12pt;color: blue; text-decoration:underline}
h2{}
</style>
<script type="text/JavaScript">
function chkEingabeformular() {
{
var Fehlermeldung = "";
if(document.Eingabeformular.name.value =="")
{
Fehlermeldung+="Bitte geben sie Ihren Namen an!\n";
}
if(document.Eingabeformular.Strasse.value =="")
{
Fehlermeldung+="Bitte geben sie Ihre Straße an!\n";
}
if(document.Eingabeformular.plz_ort.value =="")
{
Fehlermeldung+="Bitte geben sie Ihren Wohnort und ihre Postleitzahl an!\n";
}
if(document.Eingabeformular.email.value =="")
{
Fehlermeldung+="Bitte geben sie Ihre E-mail Adresse an!\n";
}
if(document.Eingabeformular.kommentar.value =="")
{
Fehlermeldung+="Bitte geben sie einen Kommentar ein!\n";
}
if (Fehlermeldung)
{
alert(Fehlermeldung);
return false;
}
else
{
return true;
}
}
//-->
}
</script>
</head>
<body>
<table border="0" width="675" height="278">
<form action="input_text.htm" name="Eingabeformular" method="post" onsubmit="chkEingabeformular ()">
<td height="270" width="218">
<p style="line-height: 100%; margin-top: -1; margin-bottom: -1">
<input type="checkbox" name="bitte_anrufen" value="ON">Bitte
rufen Sie uns an
<p style="line-height: 100%; margin-top: -1; margin-bottom: -1">
<p style="line-height: 100%; margin-top: -1; margin-bottom: -1"> </p>
<p style="line-height: 100%; margin-top: 0; margin-bottom: 0">Name:<br><input name="user" type="text" size="30" maxlength="30"></p>
<p style="line-height: 100%; margin-top: 0; margin-bottom: 0">Strasse:<br><input name="Strasse" type="text" size="30" maxlength="30"></p>
<p style="line-height: 100%; margin-top: 0; margin-bottom: 0">PLZ/Ort:<br><input name="plz_ort" type="text" size="30" maxlength="30"></p>
<p style="line-height: 100%; margin-top: 0; margin-bottom: 0">Tel.:<br><input name="tel" type="text" size="30" maxlength="30"></p>
<p style="line-height: 100%; margin-top: 0; margin-bottom: 0">EMail:<br><input name="email" type="text" size="30" maxlength="30"></p>
<p style="line-height: 100%; margin-top: 0; margin-bottom: 0">Internet:<br><input name="internet" type="text" size="30" maxlength="30"></p>
<td width="443" rowspan="7" height="274">
<form action="textarea.htm"
<p> Kommentar:<br>
<textarea name="kommentar" cols="50" rows="15" </textarea>
</textarea>
</td>
<tr>
<td height="33" width="218">
<input type="submit" value="Absenden">
</tr>
</form>
</table>
<p> </p>
<table border="0" width="647" cellspacing="0" cellpadding="0">
<tr>
<td width="200"><font size="3">Firmenname</font></td>
<td width="218" align="left"><font size="3">Tel. Einkauf/Verkauf:</font></td>
<td width="255"><font size="3">Telefonnummer</font></td>
</tr>
<tr>
<td width="200"><font size="3">Straße</font></td>
<td width="218" align="left"><font size="3">Tel. Einkauf/Verkauf:</font></td>
<td width="255"><font size="3">Telefonnummer</font></td>
</tr>
<tr>
<td width="200"><font size="3">Postfach</font></td>
<td width="218" align="left"><font size="3">Tel. Buchhaltung:</font></td>
<td width="255"><font size="3">Telefonnummer</font></td>
</tr>
<tr>
<td width="200"><font size="3">D - PLZ</font></td>
<td width="218" align="left"></td>
<td width="255"></td>
</tr>
<tr>
<td width="200"></td>
<td width="218" align="left"><font size="3">Telefax:</font></td>
<td width="255"><font size="3">Telefaxnummer</font></td>
</tr>
<tr>
<td width="200"><a href="http://"><font size="3">Firmen Infos</font></a></td>
<td width="218" align="left"><a href="mailto:abc@abc.de"><font size="3">eMail</font></a></td>
<td width="255"></td>
</tr>
</table>
</body>
</form>
</script>
Danke schonmal für eure antworten!!!
Lg, Dragostea
Comment