a href problem
jeg har denne lille asp fil som laver et delvist udtræk af en nyhed, så er det meningen af man skal klikke på et link så man ser hele nyheden, men det kan jeg ikke få til at virke, nogle som kan hjælpe mig.nyhed.asp
==================================================================
<!-- #include file="databaseforbindelse.asp"-->
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<%Set Query = Conn.Execute(" SELECT TOP 1 * FROM nyhed order by dato desc")
if Query.EOF then %>
<tr>
<td width="100%" align="center">Ingen nyheder pt.</td>
</tr>
<%end if%>
<% Do until Query.EOF %>
<tr>
<td width="100%" align="center"><%=Query("dato")%><br><a href="senyhed.asp"><%=left(Query("tekst"),25)%>... Læs mere</a><hr size="1" noshade></td>
</tr>
<%Query.MoveNext%>
<%loop%>
<% conn.close
Set Conn = Nothing %>
</table>
=================================================================
senyhed.asp -> skal vise hele nyheden i en popup.
=================================================================
<html>
<head>
<title>SE NYHED</title>
<script language="javascript" type="text/javascript">
/*
Auto center window script- Eric King (http://redrival.com/eak/index.shtml)
*/
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
if(win.window.focus){win.window.focus();}
}
</script>
</head>
<body>
<center>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="60%" id="AutoNumber1">
<tr>
<td width="100%" class="top" align="center" colspan="2">.:: KORNUMGÅRD NYHED ::.</td>
</tr>
<tr>
<% Set Query = Conn.Execute("SELECT * From nyhed")
%>
<td width="100%" class="kant" colspan="2"><% =Replace(Query("tekst"),vbcrlf,"<br>" & " ")%> </td>
</tr>
</table>
</center>
<br>
</body>
</html>
=================================================================
