Click here to Skip to main content
Click here to Skip to main content

Confirm Postback of a page from Client End

By , 13 Sep 2009
 

It is a very common issue to handle automatic postbacks to controls. Here I am going to explain how we can handle autopostback of a button click using Javascript Event.

Suppose you have a button :

<asp:button runat="server" onclick="btn_click" 
Id ="btnAutoPostBack" /> 

Now you want to occationally cancel the click event so that the page will only be posted back when you want. So add this code:

<asp:button runat="server" onclick="btn_click" 
Id ="btnAutoPostBack" onclientclick="javacript:return isValid();"/>

or Add the attribute onclick to the button in Page_Load :

btn.Attributes.Add("onclick", "javascript:return isValid()");

Now let us look what the function look like:

function isValid(){
   return confirm("Are you sure you want to postback?");
   //Returns true when click ok, otherwise false.
}


Thus when you click on Ok, the btn_click will get generated as the page is posted back, otherwise the page will remain intact.
here Javascript:return false; means we are disallowing the postback event of the button.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Abhishek Sur
Team Leader
India India
Member
Did you like his post?
 
Oh, lets go a bit further to know him better.
Visit his Website : www.abhisheksur.com to know more about Abhishek.
 
Abhishek also authored a book on .NET 4.5 Features and recommends you to read it, you will learn a lot from it.
http://bit.ly/EXPERTCookBook
 
Basically he is from India, who loves to explore the .NET world. He loves to code and in his leisure you always find him talking about technical stuffs.
 
Presently he is working in WPF, a new foundation to UI development, but mostly he likes to work on architecture and business classes. ASP.NET is one of his strength as well.
Have any problem? Write to him in his Forum.
 
You can also mail him directly to abhi2434@yahoo.com
 
Want a Coder like him for your project?
Drop him a mail to contact@abhisheksur.com
 
Visit His Blog

Dotnet Tricks and Tips



Dont forget to vote or share your comments about his Writing

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
-- There are no messages in this forum --
Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130523.1 | Last Updated 13 Sep 2009
Article Copyright 2009 by Abhishek Sur
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid