-----------------------------------------------------------

New Message on BDOTNET

-----------------------------------------------------------
From: MVP_mayank
Message 4 in Discussion




IsPostBack is just a function that checks to see if the page has been posted back (by 
clicking a button or manipulating another control) or if it is the first time the page 
has loaded. 

More On IsPostBack...

When first time loading the page, IsPostBack is false. Again posting values to server, 
IsPostback will true
just have one button in ur aspx page and write the code in Page_Load event

if(Page.IsPostBack)
{
Response.Write("Post back");
}
else
{
Response.Write("Page Loaded");
}

while page is loading, 'page loaded' message will be displayed. when u click the 
button, u will see 'post back' message in ur screen. but both are written in Page_load 
event only.


Read MSDN Documentation For More on This Topic




Regards, 
Mayank Pujara ([EMAIL PROTECTED]) 



>From: "Creative_Pradyut" <[EMAIL PROTECTED]> 
>Reply-To: "BDOTNET" <[EMAIL PROTECTED]> 
>To: "BDOTNET" <[EMAIL PROTECTED]> 
>Subject: Re: help--Me : CheckBox column in Datagrid... 
>Date: Sun, 24 Oct 2004 10:18:39 -0700 
> 

The all-new MSN Mesenger! Get the coolest emoticons. Share more of yourself! 

-----------------------------------------------------------

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/BDOTNET/_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]

Reply via email to