extending c# textbox control

Posted by scatman on Stack Overflow See other posts from Stack Overflow or by scatman
Published on 2010-04-20T09:34:38Z Indexed on 2010/04/20 11:03 UTC
Read the original article Hit count: 211

Filed under:
|

I am extending the textBox control, and i want to call a javascript function on its OnLoad(EventArgs e). how can i do this?

public partial class MyTextBox: TextBox 
{
 protected override void OnLoad(EventArgs e)  
    {  
        base.OnLoad(e);   
       //call to javascript function?               
    }  
}  

© Stack Overflow or respective owner

Related posts about c#

Related posts about JavaScript