I have test.aspx file with its code behind located on my hard drive.
The test.aspx is not part of my web application.
I want to load this aspx file into the ASP.NET Page object so that I can navigate through some controls in it.
Basically what I wnat is get list of all the controlls say asp:button in the the given aspx file.
How to do that ..
I dont want to use regular expression.
Reflection could be an option.