-
Question 1. How do I make a call to another asp page
from within a asp page, without using include file option.
Question 2. How do I make a call to another asp page
from within a asp page, without using include file option,
also passing variables with the same call to the page requested.
Hope this makes sense as to what I am trying to do.
-
use
<%Response.Redirect "somePage.asp?variable1=whatever&variable2=whatever"
%>
This must appear at the beggining of your asp page, before anything else is written.
Hope this helps