sunflower84
Erfahrenes Mitglied
Hallo zusammen
Ich habe ein paar Eingabefelder. Wenn diese ausgefüllt sind werden sie in die Datenbank exportiert. Das ist auch alles kein Problem.
Ich würde jetzt gerne eine Meldung bringen wenn ein bestimmtes Eingabefeld nicht ausgefüllt wurde. Ich weiss das das mit einer if geht. Aber alle Versuche leider erfolglos.
Hier mein Quelltext wo die Daten exportiert werden:
<%
'Auslesen der Formularfelder
addProduct =TRIM( Request("Anmelden"))
productName =TRIM(Request( "productName"))
productPrice =TRIM(Request( "productPrice"))
productPicture =TRIM(Request( "productPicture"))
name =TRIM(Request( "name"))
vorname =TRIM(Request( "vorname"))
'Standardwerte zuweisen
IF productName= ""Then
productName= "?"
END IF
IF productPrice= ""THEN
productPrice= "?"
END IF
IF productPicture= ""THEN
productPicture="?"
END IF
IF vorname= ""Then
vorname= "?"
END IF
IF name= ""Then
name= "?"
END IF
'Öffnen der Datenbankverbindung
Set Con = Server.CreateObject( "ADODB.Connection")
Con.Open "accessDSN"
%>
<html>
<head><title>Manage Products</title></head>
<%
'Neues Produkt hinzufügen
IF addProduct <> "" THEN
sqlString = "INSERT INTO Products (product_name,product_price,product_picture,vorname,name) VALUES ('" & productName & "', '" & productPrice &"', '" & productPicture &"', '" &vorname &"', '" &name &"')"
Con.Execute sqlString
%>
<center>
<table width="600" cellpadding="4" cellspacing="0">
<tr>
<td>
Anmeldung erfolgreich
</td>
</tr>
</table>
</center>
<p></p>
<%
END IF
%>
<a href="addproduct.asp">back</a>
</body>
</html>
Ich denke das das nicht sehr schwer sein kann.
LG
Sunflower84
Ich habe ein paar Eingabefelder. Wenn diese ausgefüllt sind werden sie in die Datenbank exportiert. Das ist auch alles kein Problem.
Ich würde jetzt gerne eine Meldung bringen wenn ein bestimmtes Eingabefeld nicht ausgefüllt wurde. Ich weiss das das mit einer if geht. Aber alle Versuche leider erfolglos.
Hier mein Quelltext wo die Daten exportiert werden:
<%
'Auslesen der Formularfelder
addProduct =TRIM( Request("Anmelden"))
productName =TRIM(Request( "productName"))
productPrice =TRIM(Request( "productPrice"))
productPicture =TRIM(Request( "productPicture"))
name =TRIM(Request( "name"))
vorname =TRIM(Request( "vorname"))
'Standardwerte zuweisen
IF productName= ""Then
productName= "?"
END IF
IF productPrice= ""THEN
productPrice= "?"
END IF
IF productPicture= ""THEN
productPicture="?"
END IF
IF vorname= ""Then
vorname= "?"
END IF
IF name= ""Then
name= "?"
END IF
'Öffnen der Datenbankverbindung
Set Con = Server.CreateObject( "ADODB.Connection")
Con.Open "accessDSN"
%>
<html>
<head><title>Manage Products</title></head>
<%
'Neues Produkt hinzufügen
IF addProduct <> "" THEN
sqlString = "INSERT INTO Products (product_name,product_price,product_picture,vorname,name) VALUES ('" & productName & "', '" & productPrice &"', '" & productPicture &"', '" &vorname &"', '" &name &"')"
Con.Execute sqlString
%>
<center>
<table width="600" cellpadding="4" cellspacing="0">
<tr>
<td>
Anmeldung erfolgreich
</td>
</tr>
</table>
</center>
<p></p>
<%
END IF
%>
<a href="addproduct.asp">back</a>
</body>
</html>
Ich denke das das nicht sehr schwer sein kann.
LG
Sunflower84