hey,
this Script write to the same side, but
i will that the answer be written in a
new html side.
<html>
<body>
<form action="demo.asp" method="get">
Your name: <input type="text" name="fname" size="20">
<input type="submit" value="Submit">
</form>
<%
dim fname
fname=Request.QueryString("fname")
If fname<>"" Then
Response.Write("Hello " & fname & "!<br />")
End If
%>
</body>
</html>
i tried this:
Response.Write("<html><head></head><body>" & fname &"</body></html>")
but it does'nt work
??
this Script write to the same side, but
i will that the answer be written in a
new html side.
<html>
<body>
<form action="demo.asp" method="get">
Your name: <input type="text" name="fname" size="20">
<input type="submit" value="Submit">
</form>
<%
dim fname
fname=Request.QueryString("fname")
If fname<>"" Then
Response.Write("Hello " & fname & "!<br />")
End If
%>
</body>
</html>
i tried this:
Response.Write("<html><head></head><body>" & fname &"</body></html>")
but it does'nt work
??