> but I think for the button on_click event, it is always load the page, how
> should I click the button and do not load the page?
You cannot (when it is a serverside button).
(ASPNET is stateless, so when you do not load the page there is nothing)
However in the link I showed you is told how to overcome the load event.
Cor
Shuvro Mazumder [MSFT] - 28 Jan 2005 03:25 GMT
You might consider using a client side button whose handler code is
generated form the server side using RegisterClientScript(). You can get the
clientId of the server side text box.

Signature
This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm.
> > but I think for the button on_click event, it is always load the page, how
> > should I click the button and do not load the page?
[quoted text clipped - 5 lines]
>
> Cor