> Here's my .aspx page... > > <% Page Inherits="myPage" CodeBehind="myPage.aspx.cs" %> > > ... > > Here's my codebehind page... > > using System; > using System.Web; > using System.Web.UI; > using System.Web.UI.WebControls; > using System.Web.UI.HtmlControls; > > public class maintainGroup : System.Web.UI.Page ...
Personally, I'm not that impressed with the "codebehind" concept; it's still very tightly linked to the presentation code, such that if you were to change the presentation code by hand, you'd have to change the .cs file to reflect that. To my mind, that's a flimsy separation of logic at best, and the .cs file often really contains presentation logic anyway - code that affects what the user views. That said, I'm certainly no ASP.NET expert, so I could be wrong. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Get the mailserver that powers this list at http://www.coolfusion.com Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

