C#

  • Thread starter Thread starter Guest
  • Start date Start date
Gingee,

gingee raja said:
Any other event is there other than Click event for Button control

Web button or windowsform button?
Although you are looking maybe at the performclick what is a method.


Cor
 
gingee raja said:
Any other event is there other than Click event for Button control

Go to your Properties window and click the Events button on the toolbar.
You'll see an extensive selection of events for a Button (Windows). The same
procedure yields a considerably shorter event list for web forms.
For additional information, look for documentation (readily available in
MSDN Help) on:

System.Windows.Forms.Button and/or
System.Web.UI.WebControls.Button

On the web:

http://msdn.microsoft.com/library/d...l/frlrfSystemWindowsFormsButtonClassTopic.asp

http://msdn.microsoft.com/library/d...lrfsystemwebuiwebcontrolsbuttonclasstopic.asp
 
Back
Top