Hilf Dir selbst, dann hilft Dir Gott .... ;)
Also: Ergebnis der Recherche, das ist MEGA simple, Formulardaten von einem an ein anderes ASP file zu übertragen .....
So gehts:
aus einem Formular in erfassung.asp
-- snip --
<form name="myform" action="http://meinhost/auswertung.asp" method="post">
<input type="text" name="suchbegriff" value="meine Variable" />
<input type="submit" />
</form>
-- snap --
in das file auswertung.asp
-- snip --
<%@ LANGUAGE = JScript %>
<html>
<head>
<title>Zeig mir die übergebene Variable an</title>
</head>
<body>
<div>
<%
var Suchbegriff = Request.Form("suchbegriff");
Response.write(Suchbegriff);
%>
</div>
</body>
</html>
-- snap --
output:
##########
meine Variable
##########
CU ;)
Boris