Is it possible to call two functions on the same event, one client-side and the other server-side? I need to achieve this.
<input type="text" ID="txtUserName" runat="server" maxlength="50"
class="DefaultTextbox" style="width:180px;" value=""
onfocus="ControlOnFocus('', this, spanUserName);"
onblur="ControlOnBlur('',this, spanUserName); "
/>
onblur="ControlOnBlur(); function2();
Would the code above work for calling two functions simultaneously?
onblur="ControlOnBlur(); function2();