call function from jscript file to .aspx inline code
-
for validation: I want to call a function which is in .js file, function called in inline code by is it correct way to call ???? or any one tell me the write way to call function from javascript file i already done following code runnable for keypress event, Please tell me the way to call function in aspx inline code or any fault in given code
-
for validation: I want to call a function which is in .js file, function called in inline code by is it correct way to call ???? or any one tell me the write way to call function from javascript file i already done following code runnable for keypress event, Please tell me the way to call function in aspx inline code or any fault in given code
-
for validation: I want to call a function which is in .js file, function called in inline code by is it correct way to call ???? or any one tell me the write way to call function from javascript file i already done following code runnable for keypress event, Please tell me the way to call function in aspx inline code or any fault in given code
There are manu ways to call the javascript funtion from aspx and code behind file Write you javascript function and call it from on that event <asp:TextBox ID="TextBox1" onkeypress="myfunction();" runat="server"></asp:TextBox> in same you can register the same from code behind file also TextBox1.Attributes.Add("onkeypress", "javascript:myfunction();");
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... " Check My Blog