You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by de...@apache.org on 2005/02/14 09:47:11 UTC

svn commit: r153742 - webservices/axis/trunk/java/dev/scratch/prototype2/src/html/index.html

Author: deepal
Date: Mon Feb 14 00:47:07 2005
New Revision: 153742

URL: http://svn.apache.org/viewcvs?view=rev&rev=153742
Log:
added a javascript

Modified:
    webservices/axis/trunk/java/dev/scratch/prototype2/src/html/index.html

Modified: webservices/axis/trunk/java/dev/scratch/prototype2/src/html/index.html
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/dev/scratch/prototype2/src/html/index.html?view=diff&r1=153741&r2=153742
==============================================================================
--- webservices/axis/trunk/java/dev/scratch/prototype2/src/html/index.html (original)
+++ webservices/axis/trunk/java/dev/scratch/prototype2/src/html/index.html Mon Feb 14 00:47:07 2005
@@ -1,10 +1,19 @@
 <html>
-	<head></head>
+<head>
+
+<script language ="javascript">
+  function listServices(){
+     document.Axis2.submit();
+  }
+</script>
+
+</head>
 	<body>
-       <form method="post" name="Axis2" action="listServices">
+       <form method="post" id="Axis2" name="Axis2" action="listServices">
 
-		<h1>Apache Axis2</h1>	
-            <input name="submit" type="submit" value=" List Available services " >
+		<h1>Apache Axis2</h1>
+                <a href="#" onClick="javascript:listServices();"> List Available
+services</a>
        </form>
 	</body>
 </html>