In .net 2005 when defining a web form (.aspx), the partial keyword is added, which as I understood, doesn't allow inheritence. How in this case can I inherit a web form
Thanks.
In .net 2005 when defining a web form (.aspx), the partial keyword is added, which as I understood, doesn't allow inheritence. How in this case can I inherit a web form
Thanks.
Inheritence of web forms
Bakhytzhan
Partial type definitions allow the definition of a class, struct or interface to be split into multiple files. Just that.
See: Partial Class Definitions (C#),
partial (C#)