I'm looking at reorganizing a large web site project into a class library project and a few smaller website projects, under one solution.
Supposing this structure:
Solution
ClassLibProject
Classes
WebSiteProject01
App_Pages
Page01.aspx
WebSiteProject02
App_Pages
Page02.aspx
If Page01 were in the same project as Page02, I would expect to call Page02 from Page01 using this
Response.Redirect("~/App_Pages/Page02.aspx")
How would I code the equivalent call from Page01 to Page02 if the pages are in separate projects?