Hallo,
Du kannst natürlich auch weiterhin
<%Response.write("body onload='parent.frames[1].location.href='" & fp_rs("Internet1") & "';>'")
schreiben. Ich persönlich halte es für übersichtlicher und einfacher solche Strings strukturiert aufzubauen:
<html>
<head>
</head>
<%
myBody = "<body onLoad='parent.frames[1].location.href='"
myBody = myBody & fp_rs("Internet1")
myBody = myBody & & "';>'"
Response.write(myBody)
%>
</body>
</html>
Gruß
Markus