I have several ASPs with the following line
<!--#include file="header_allocedit.asp" -->
The header_allocedit.asp page needs to know which page called it. In the header_allocedit.asp page I have the following
<%
dim purpose
purpose = C4
If request.querystring("purp") <> "" Then
purpose = request.querystring("purp")
End if
%>
What do I need in the calling page to make this work? Or does it have to be done differently?
<!--#include file="header_allocedit.asp" -->
The header_allocedit.asp page needs to know which page called it. In the header_allocedit.asp page I have the following
<%
dim purpose
purpose = C4
If request.querystring("purp") <> "" Then
purpose = request.querystring("purp")
End if
%>
What do I need in the calling page to make this work? Or does it have to be done differently?