NavigationElement in asp .net

Viewed 26

I have 2 asp .net solutions which are inter-dependent Solution1 and Solution2. In the solution1 I came across the following xml in config file

<NavigationElement Url="home/root.aspx" ActionClass="Solution2.MenuClass" ActionAssembly="Solution2.Web" ForwardUrl="home/ButtonClick.aspx">
 <ForwardElement key="load" Url="home/NCB.aspx">
 ....
</NavigationElement>

I am able to find only MenuClass.cs file which has "Execute" method ,apart from this I am not able to find any other aspx files in both the solutions. In the url I am able to see "home.ButtonClick.aspx".

How is the navigation being resolved in this scenario for ex: to "NCB.aspx" .

Without this knowledge I am unable to debug the asp .net solution.

0 Answers
Related