In an aspx page you can make "PreviousPage" subclass one of your Pages by adding a line like
<%@ PreviousPageType VirtualPath="~/Default.aspx" %>
Then in code behind you can use public properties that you define in the previous page, like PreviousPage.MyProperty, etc.
But resharper is not recognizing this and is marking such code with "cannot resolve symbol".