How to implement base page?
Hello
Is there any documentation on how to implement a base page in Sitefinity 4.2? I can't find any reference to it beyond the release notes.
Thanks
Ryan
I've experimented with this a bit myself, and it was pretty straightforward.
Simply create a class that inherits from Page:
namespace
SitefinityWebApp.Pages
public
class
BasePageClass : Page
protected
void
Page_Load(
object
sender, EventArgs e)
// do stuff!
Thanks! That's what I was looking for. All working great now.
Ryan