snekkorrMedlem sedan dec. 2000203 inlägg hur deletar jag ett Id tex i en gästbok så ska man kunna klicka på ta bort inlägg... ? exempel på smidig kod? så här ser koden ut som visar inläggen:
<html>
<head>
<title>Välkommen till min gästbok</title>
</head>
<body bgcolor="#FFFFFF">
<!-- #Include File="adovbs.inc" -->
<!-- #Include File="connect.asp" -->
<% Visa = "Select * From gestboken"
RecSet.Open visa, Connect, adOpenStatic, adLockOptimistic
%>
<% Do While Not RecSet.EOF %>
<table width="40%" border="0" cellpadding="0" cellspacing="0" >
<tr>
<td>Inlägg #<%= RecSet("Id") %></td>
</tr>
<tr>
<td><%= RecSet("Namn") %> <%= RecSet("Efternamn") %></td>
</tr>
<tr>
<td><a href="<%= RecSet("Hemsida") %>"><%= RecSet("Hemsida") %></a></td>
</tr>
<tr>
<td><a href="mailto:<%= RecSet("Email") %>"><%= RecSet("Email") %></td>
</tr>
<tr>
<td><%= RecSet("Text") %><br><hr></td>
</tr>
</table>
<% RecSet.MoveNext
Loop %>
<% RecSet.Close
%>
------------------
Du! är jag du? Jag ja!
icaaqMedlem sedan okt. 20005 273 inlägg <html>
<head>
<title>Välkommen till min gästbok</title>
</head>
<body bgcolor="#FFFFFF">
<!-- #Include File="adovbs.inc" -->
<!-- #Include File="connect.asp" -->
<% Visa = "Select * From gestboken"
RecSet.Open visa, Connect, adOpenStatic, adLockOptimistic
%>
<% Do While Not RecSet.EOF %>
<table width="40%" border="0" cellpadding="0" cellspacing="0" >
<tr>
<td>Inlägg #<%= RecSet("Id") %></td>
</tr>
<tr>
<td><%= RecSet("Namn") %> <%= RecSet("Efternamn") %></td>
</tr>
<tr>
<td><a href="<%= RecSet("Hemsida") %>"><%= RecSet("Hemsida") %></a></td>
</tr>
<tr>
<td><a href="mailto:<%= RecSet("Email") %>"><%= RecSet("Email") %></td>
</tr>
<tr>
<td><%= RecSet("Text") %><br><hr></td>
</tr>
<tr>
<td><a href="delete.asp?ID=<%= RecSet("ID") %>">Ta bort inlägg</a></td>
</tr>
</table>
<% RecSet.MoveNext
Loop %>
<% RecSet.Close
%>
och sen på delete.asp
intID = Request.Querystring("ID")
strSQL = "DELETE * FROM Din tabel WHERE [ID] = "&intID&""
ObjCon.execute(strSQL)
Typ nåt sånt kanske ?? :OO
------------------
I like ¼ £ whith cheese
d
[Redigerat av Nickemannen den 11 aug 2001]
snekkorrMedlem sedan dec. 2000203 inlägg :d tack
------------------
Du! är jag du? Jag ja!