onmouseover in <asp:textbox>

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • raghulvarma
    New Member
    • Oct 2007
    • 90

    onmouseover in <asp:textbox>

    In <asp:textbox> we do not have the method such as onmouseover as we have it in input type = "text" instead of onmouseover which method would be a perfect match for it? My situation is for a calender plz help me out...
  • pshm
    New Member
    • Mar 2008
    • 20

    #2
    hi,
    ASP controls will run at server.. there you cant use the client side event handlers directly.
    you can add the event handlers by this way
    Code:
    controleName.Attributes.Add("onmouseover","return javascript_name();");
    give this code in the page_load method

    regards,

    Comment

    Working...