event handler in asp.net 2.0
ASP.NET
3
Posts
3
Posters
0
Views
1
Watching
-
keyto wrote:
sp.net to standard control ?
What is standard control ?
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
-
I assume that standard controls means the controls that included in .NET framework by default.. It's simple. For example, if you want to add the event handler to button, you can wrote like that . C#
this.saveButton.Click += new System.EventHandler(this.saveButton_Click); void myButton_Click(object sender, EventArgs e) { Response.Write("Button Clicked"); }
Thanks and Regards, Michael Sync ( Blog: http://michaelsync.net)