Hi Alex.
Hier kommt der Code :
<%Response.Buffer = TRUE%>
<%Response.Expires = 0%>
<html>
<head>
<title>Neue Seite 2</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<%
set conntemp=Server.createobject("adodb.connection")
conntemp.open "tsnews","sa",""
whichID=request.querystring("which")
sqltemp="Select * from tsnews where ID="& whichid
set rstemp=conntemp.execute(sqltemp)
id=rstemp("id")
titel=rstemp("titel")
news=rstemp("news")
autor=rstemp("autor")
newsart=rstemp("newsart")
rstemp.close
set rstemp=nothing
conntemp.close
set conntemp=nothing
%>
</head>
<body>
<form method="POST" action="news_update_korrektur.asp">
<input type="hidden" name="datum" value="<%=Left(Now,5)%>"><input type="hidden"
name="uhrzeit" value="<%=Right(Now,8)%>"><input type="hidden" name="id" value="<%=id%>"><table BORDER="1" CELLSPACING="1" CELLPADDING="0"
width="100%" height="343" bgcolor="#000080" bordercolor="#000080"
bordercolorlight="#000080" bordercolordark="#000080">
<tr>
<td VALIGN="middle" BGCOLOR="#000080" HEIGHT="48" width="722" align="center"><div
align="center"><center><p><font color="#FF8000" face="Arial"><strong><big><big><big>TELEKOM
NEWS</big></big></big><br>
<big><big><big>- Administrator -</big></big></big></strong></font></td>
</tr>
<tr align="center">
<font color="#000080"><td VALIGN="TOP" BGCOLOR="#FFFFFF" HEIGHT="287" width="722"
align="center"></font><table border="0" cellspacing="1" width="80%">
<tr>
<td width="11%"><strong><font face="Arial">Titel:</font></strong></td>
<td width="89%"><input type="text" name="titel" size="40" value="<%=titel%>"></td>
</tr>
<tr>
<td width="11%" valign="top"><strong><font face="Arial">News:</font></strong></td>
<td width="89%"><pre><textarea rows="10" name="news" cols="70" wrap="hard"><%=news%></textarea></pre>
</td>
</tr>
<tr>
<td width="11%"><strong><font face="Arial">Autor:</font></strong></td>
<td width="10%"><input type="text" name="autor" size="2" maxlength="2" value="<%=autor%>"></td>
</tr>
<div style="position:absolute; top:300px; left:280px"><a href="javascript:history.back(-1);"><img src="../bilder/zurueck_news.gif" border=0></a></div>
<div style="position:absolute; top:302px; left:480px"><a href="news_delete.asp?which=<%=id%>"><img src="../bilder/loeschen_news.gif" border=0></a></div>
</form>
</table>
</body>
</html>
Ich hoffe Du kannst was damit anfangen !
cu
Marcus