I have the following directory structure
\myrmc
\mydal
In each directory i have an aspx page with the same name
mydata_sales.aspx
I also have an XML file in each directory that is loaded up by the following
code in the aspx page
<asp:XmlDataSource ID="XmlDataSource1" runat="server"
DataFile="XMLMenu.xml" ></asp:XmlDataSource>
The contents of each xmlemnu.xml file is different depending on the
directory. My problem is that it seems to be caching this xml file. If I
go to myrmc\mydata_Sales.aspx first then no matter which directory you go
into after that you see the XMLMENU.xml page from the myrmc directory. How
do I get it to load the appropriate file within the directory?