Posted on: 1/30/2015 5:10:32 AM | Views : 532

Hi How would I run  MyFunction after running MyValGroup ? I would like to validate a form then, if the form is correct run a javascript. Thank you Something like this
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <%@ Page Language="C#" %> <html dir="ltr" xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> <title>Untitled</title> <script> function myFunction() { var x; if (confirm("Press a button!") == true) { x = "You pressed OK!"; } else { x = "You pressed Cancel!"; } document.getElementById("demo").innerHTML = x; } < ...

Go to the complete details ...