Click here to Skip to main content
15,886,518 members
Articles / Web Development / ASP.NET
Tip/Trick

Confirm Postback of a page from Client End

Rate me:
Please Sign up or sign in to vote.
4.20/5 (2 votes)
13 Sep 2009CPOL 10K   5  
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 c

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)


Written By
President
India India
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.

Working as a VP product of APPSeCONNECT, an integration platform of future, he does all sort of innovation around the product.

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

Comments and Discussions

 
-- There are no messages in this forum --