Cross page postbacks in ASP.NET 2.0
<%@ Reference Page="SourcePage.aspx" %>
types the PreviousPage property as Page but allows you to cast the it to the SourcePage_aspx type.
Some people don't like the cross-page posting feature, as it causes strong coupling between pages. I think it definitely has its uses (eliminating the need for the Server.Transfer abomination, for example). One way to address the strong coupling issue is to use interfaces instead of page types, in which case the Reference directive isn't needed. But it's handy to know about if you need it.
Incidentally, this directive is actually part of .NET 1.1, but I've never needed it with that version.. It seems to become more useful in .NET 2.0.