Why is the code behind a partial class for aspx pages?
|
|
|||||||||
|
|
|
I would refer you to this MSDN Page (ASP.NET Page Class Overview).
See this chart :
This way you have one class that contains your logic and one class that contains designer stuff. At compile time it is generated as a whole. |
||||
|
|
|
The other reason for partial files is to handle the case where some of the class definition is generated by a tool (And may be regenerated at some point) and the rest of the class is implemented by you. In such cases, not using a partial class would result in either your code being overwritten, or the generation process having difficulty doing its job (If it can do it at all). With the partial classes in place, the generated code can be easily regenerated without touching your code. Another good example of this is when using the DataContext classes for LINQ-to-SQL: The really clever stuff is generated into one set of partial class files and you can provide implementations - for validation etc. - in the other partial class, safe in the knowledge that re-generation won't destroy your work. |
||
|
|
|
|
The Partial declaration lets you write code in other files - just put it in the same namespace and name the class the same, and they'll be treated as if they're in the same file. It's great for adding functionality to generated files. I most frequently use it to add functions / properties to my LinqToSql objects. |
||
|
|
|
Because there are other parts of the class (Designer stuff) that's hidden from the developer For example, instead of this
ASP.NET creates those declarations in different physical files, leaving this
More info: |
||||
|

