Klaus: Dynamischer Hyperlink

Hallo Forum !

Ich habe folgendes Problem:

Ich möcht innerhalb einer ASP einen Hyperlink einbauen, der dynamisch aus der Datenbank heraus generiert wird. Mit location.href="..." kann ich jedoch nur einen statischen Link generieren.

Wer kann mir helfen ?

DANKE!

Set OBJdbConnection = Server.CreateObject("ADODB.Connection")
OBJdbConnection.Open "Personalverkauf"
SQLQuery = "SELECT * FROM Ware_Verfuegbar"
Set RS = OBJdbConnection.Execute(SQLQuery)
%>
<%
Do While Not RS.EOF
%>

<table border="0" cellpadding="0" cellspacing="0" width="100%">
  <tr>
    <td width="20%"><%=RS("Materialnummer")%>
</td>
    <td width="20%"><%=RS("Materialkurztext")%>
</td>
    <td width="20%"><%=RS("Preis")%>
<p>DM</td>
    <td width="20%"><%=RS("Verfuegbare_Menge")%>
</td>
    <td width="20%"><input type="button" value="Ansehen"
    onClick="Javascript:location.href='http://www.xyz.de'"></td>
  </tr>
</table>
<%
RS.MoveNext
Loop
RS.Close
Set RS = Nothing
OBJdbConnection.Close
Set OBJdbConnection = Nothing

  1. versuch es doch mit JavaScript:

    var URL_Value = (Bedingung) URL1:URL2;
    ...

    location.href = URL_Value