----------------------------------------------------------- New Message on MumbaiUserGroup
----------------------------------------------------------- From: Jigs Message 2 in Discussion The code-behind pages have the advantage of separating the code of an ASP.NET Web page from the HTML content when u create a webform there are two files created. eg. HelloWorld.aspx and HelloWorld.aspx.vb .aspx contains HTML and .VB contains your code. if you open .aspx page in notpage you will find first line as <%@ Page language="c#" Codebehind="HelloWorld.aspx.vb" AutoEventWireup="false" Inherits="App.HelloWorld" %> This is how link is maintained. at runtime both pages are combined and executed to produce desired results. The events for the controls you will write in codebehind pages. The event executes on server side allowing you to gain access on controls as objects. Events are collected and send to the server when you click on button to submit the Webpage. For more details read here : http://msdn.microsoft.com/asp.net/community/inbox/codebeside/default.aspx Regards, Jignesh Deasai ----------------------------------------------------------- To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. http://groups.msn.com/mumbaiusergroup/_emailsettings.msnw Need help? If you've forgotten your password, please go to Passport Member Services. http://groups.msn.com/_passportredir.msnw?ppmprop=help For other questions or feedback, go to our Contact Us page. http://groups.msn.com/contact If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. mailto:[EMAIL PROTECTED]
