I have a asp.net button which is runat server. there is a function handle the postback of button onclick.
How can I display a "loading ..." word in the page before going the server procedure ...?
|
1
|
I have a asp.net button which is runat server. there is a function handle the postback of button onclick. How can I display a "loading ..." word in the page before going the server procedure ...?
|
||
|
|
|
|
Hook up OnClientClick to some javascript function that returns true or false. The postback occurs if it returns true else it is canceled.
|
||
|
|
|
|
Look at OnClientClick, you can add a call to a js function, or inline JS there. Or you can wire into the button with JQuery and display a modal dialog with an async callback. |
||
|
|
|
|
You could use the
The JavaScript above is just for example, however this is (in my opinion) the preferred way to do what you're looking for. It looks something like this (in the center of the screen):
This will work for any element that raises a PostBack, so you don't have to manually call |
|||
|
|
|
|
I need the response before the postback(server code) ... |
||
|
|