Hallo,
hab folgendes Problem.
Ich will mir Daten aus einer Datenbank über html anzeigen lassen, aber ohne php zu benutzten, weil ich dann doch lieber vb.NET benutze.
Ich hab es soweit erstellt, aber irgendwie zeigt es mir nur eben die Titelleiste an und nicht die Daten die dazu gehören.
Ich hoffe ihr könnt mir helfen.
Mein Code:
<html>
<head>
</head>
<style type="text/css">
<!--
body {font-family:Tahoma;font-size:8pt;border:1px solid BUTTONSHADOW;margin:1px 1px 1px 1px;}
table {font-family:Tahoma;font-size:8pt;}
input {font-family:Tahoma;font-size:8pt;border:1px solid BUTTONSHADOW;padding:1px 1px 1px 1px;}
td.price {background-color:#FFFFFF;border:1px solid #828082;text-align:right;padding:2px 2px 2px 2px;}
//-->
</style>
<body style="font-family:Tahoma;font-size:8pt;border-width:0px;overflow:hidden;margin:0px;color:#000000 ;" bgcolor="BUTTONFACE">
<table border="1">
<colgroup>
<col span="3">
</colgroup>
<tr>
<th>Verkauft</th>
<th>Geplant</th>
<th>Geleistet</th>
</tr>
<tr>
<td> <%
Dim Select1
Select1 = "sql query "
%></td>
<td><%
Dim x, Select2
x = request.form("tabelle")
Select2 = "sql query "
%></td>
<td><%
Dim y, Select3
y = request.form("tabelle")
Select3 = "sql query "
%></td>
</tr>
</table>
</body>
</html>
hab folgendes Problem.
Ich will mir Daten aus einer Datenbank über html anzeigen lassen, aber ohne php zu benutzten, weil ich dann doch lieber vb.NET benutze.
Ich hab es soweit erstellt, aber irgendwie zeigt es mir nur eben die Titelleiste an und nicht die Daten die dazu gehören.
Ich hoffe ihr könnt mir helfen.
Mein Code:
<html>
<head>
</head>
<style type="text/css">
<!--
body {font-family:Tahoma;font-size:8pt;border:1px solid BUTTONSHADOW;margin:1px 1px 1px 1px;}
table {font-family:Tahoma;font-size:8pt;}
input {font-family:Tahoma;font-size:8pt;border:1px solid BUTTONSHADOW;padding:1px 1px 1px 1px;}
td.price {background-color:#FFFFFF;border:1px solid #828082;text-align:right;padding:2px 2px 2px 2px;}
//-->
</style>
<body style="font-family:Tahoma;font-size:8pt;border-width:0px;overflow:hidden;margin:0px;color:#000000 ;" bgcolor="BUTTONFACE">
<table border="1">
<colgroup>
<col span="3">
</colgroup>
<tr>
<th>Verkauft</th>
<th>Geplant</th>
<th>Geleistet</th>
</tr>
<tr>
<td> <%
Dim Select1
Select1 = "sql query "
%></td>
<td><%
Dim x, Select2
x = request.form("tabelle")
Select2 = "sql query "
%></td>
<td><%
Dim y, Select3
y = request.form("tabelle")
Select3 = "sql query "
%></td>
</tr>
</table>
</body>
</html>
Zuletzt bearbeitet: