HaveTrouble
Programmer
My web folder has 3 subfolders - common\ and customer\ and vendor\. I have 2 invoice.asp pages, one in customer\ and one in vendor\ which looks like:
<!-- include file="format.asp" -->
<!-- include virtual="\common\invoice.asp" -->
<!-- include file="addbottom.asp" -->
invoice.asp has a form that will send user to \common\invoice_save.asp once form is submitted. invoice_save.asp needs to run in the parent page so format.asp and addbottom.asp will be available (format.asp in customer\ and vendor\ have different settings). How can I achieve that ?
<!-- include file="format.asp" -->
<!-- include virtual="\common\invoice.asp" -->
<!-- include file="addbottom.asp" -->
invoice.asp has a form that will send user to \common\invoice_save.asp once form is submitted. invoice_save.asp needs to run in the parent page so format.asp and addbottom.asp will be available (format.asp in customer\ and vendor\ have different settings). How can I achieve that ?