onClick event for webcontrol

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi there,

I would like to add an onClick event to a webcontrol which calls a function
which is in the code behind an not a javascript. Would that be possible?

Something like this:

MenuCase.Attributes.Add("onClick", MenuCase_ButtonClick());

private string MenuCase_ButtonClick()

thanks a lot

Chris
{
TextBox5.Text = "actually";
return null;
}
 
Chris,
I would like to add an onClick event to a webcontrol which calls a
function
which is in the code behind an not a javascript. Would that be possible?
What is a webcontrol?

(I know a Serverside control and a HTML control)

Cor
 
Back
Top