in a noncompiled .aspx, is it possible to have 2 partial class files for one aspx? I'm trying to do something like:
<%@ Page Language="C#" inherits="_Default" src="Default.aspx.cs" src="Default2.aspx.cs" %>
Both Default and Default2 have the partial class defined
Update: Yep.. It's not compiled or the point would be moot as I'd just chuck the corresponding dll's in the /bin directory. I need to have this not compiled because the source needs to be changed regularly. I probably could come up with a way to just update the aspx, but I'd like to not have to do that.
The reason I'm using two source files is that there is a lot of source code that connects to my database and whatnot. I have one person that's gonna muck with the db stuff and another person to muck with the other logic. I'd prefer to have these files separate so they don't have to muddle through code that they don't need to look at