HaveTrouble
Programmer
I have a page (main.asp) in root folder that will call a page in another folder. The root folder page looks like :
<!-- include file="format.asp" -->
<!-- include virtual="\common\invoice.asp" -->
<!-- include file="addbottom.asp" -->
\Common\invoice.asp is a form and will be submitted to \common\invoice_save.asp. \ommon\invoice_save.asp must run within main.asp so that special formatting in format.asp and addbottom.asp will be available. How can I achieve that ?
<!-- include file="format.asp" -->
<!-- include virtual="\common\invoice.asp" -->
<!-- include file="addbottom.asp" -->
\Common\invoice.asp is a form and will be submitted to \common\invoice_save.asp. \ommon\invoice_save.asp must run within main.asp so that special formatting in format.asp and addbottom.asp will be available. How can I achieve that ?