I am not sure if we call them application pages or something else but am talking about standard sharepoint forms like "NewForms.aspx" or "EditForm.aspx" for lists in 12 hive.
Does they have any code behind as when I opened a standard form in notepad I can see its inheriting from
<%@ Page language="C#" MasterPageFile="~masterurl/default.master" Inherits="Microsoft.SharePoint.WebPartPages.WebPartPage,Microsoft.SharePoint
but doesn't have any attribute for code behind file, so if I want to execute some code using object model in Page_load method then I will have to create a custom form with code behind file as I need to get things from DB and am not so willing to use Javascript ?
