Ah, this seems like AOP in java. So the form submits to its self so it either is the load or submit. So either bind and populate stuff or process. What about re-populating fields?
Travis D. Falls |Consultant, HTSC Web Services, iConnect IT | 860.547.4070 | [EMAIL PROTECTED] -----Original Message----- From: Eric Cantrall [mailto:[EMAIL PROTECTED] Sent: Thursday, September 16, 2004 10:03 AM To: '[EMAIL PROTECTED]' Subject: RE: [AspNetAnyQuestionIsOk] PostBack? Postback comes into play any time the web form is submitted. For instance I have a form that posts to itself. When it posts the first time I perform some actions. When the postback is true perform other actions. If Not Page.IsPostBack Then 'Subsequent Page Loads Do Something Don't Bind Data Else 'This is the first page load Do Another thing BindData() End If Does this make sense? It's a way of controlling what happens in the code based on a condition of the page. -----Original Message----- From: Falls, Travis D (HTSC, CASD) [mailto:[EMAIL PROTECTED] Sent: Thursday, September 16, 2004 9:52 AM To: '[EMAIL PROTECTED]' Subject: [AspNetAnyQuestionIsOk] PostBack? I am having trouble figuring out where postback comes into play in an asp.net web application. I searched 4 guys from rolla and my horrible Wrox book and I can't find a good explanation/example. I apologize for the simplistic ness of this question. Travis D. Falls |Consultant, HTSC Web Services, iConnect IT | 860.547.4070 | [EMAIL PROTECTED] This communication, including attachments, is for the exclusive use of addressee and may contain proprietary, confidential or privileged information. If you are not the intended recipient, any use, copying, disclosure, dissemination or distribution is strictly prohibited. If you are not the intended recipient, please notify the sender immediately by return email and delete this communication and destroy all copies. Yahoo! Groups Sponsor ADVERTISEMENT <http://us.ard.yahoo.com/SIG=1299h8n65/M=295196.4901138.6071305.3001176/D=gr oups/S=1705006764:HM/EXP=1095429176/A=2128215/R=0/SIG=10se96mf6/*http:/compa nion.yahoo.com> click here <http://us.adserver.yahoo.com/l?M=295196.4901138.6071305.3001176/D=groups/S= :HM/A=2128215/rand=410913473> _____ Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/ <http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/> * To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED] e> * Your use of Yahoo! Groups is subject to the Yahoo! Terms of <http://docs.yahoo.com/info/terms/> Service. [Non-text portions of this message have been removed] Yahoo! Groups Links This communication, including attachments, is for the exclusive use of addressee and may contain proprietary, confidential or privileged information. If you are not the intended recipient, any use, copying, disclosure, dissemination or distribution is strictly prohibited. If you are not the intended recipient, please notify the sender immediately by return email and delete this communication and destroy all copies. ------------------------ Yahoo! Groups Sponsor --------------------~--> Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar. Now with Pop-Up Blocker. Get it for free! http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/saFolB/TM --------------------------------------------------------------------~-> Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
