bungpeng Posted February 14, 2003 Posted February 14, 2003 Is there possible I can have a standard maintenance screen, so if any new maintenance screen, I can inherit from my standard screen? basic layout and simple validation are in this standard screen... can it be done? Quote
*Gurus* Derek Stone Posted February 14, 2003 *Gurus* Posted February 14, 2003 Yes, it can. Create your code-behind in such a fashion that it can easily be customized by any page that derives from it. Then, use the Page directive's Inherits attribute to obtain the code-behind's functionability on each page in question. <%@ Page Inherits="MyNamespace.MyClass" %> Quote Posting Guidelines
bungpeng Posted February 16, 2003 Author Posted February 16, 2003 Any simple example available? because I can't get it clear.... :) Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.