validation - Validating HTML form/web page element using VBScript -


i have started learn vbscript , want validate html form / web page elements using vbscript .

can tell me if possible refer external html form/web page vbscript code , validate it's elements inside script?

like, want add form reference or location (designed in html) in vbscript , validate textbox, checkbox , submit it.

fyi, can validate html form adding vbscript part on html code.

example:

    <html>     <head>         ...     </head>      <body>         <script type="text/vbscript">          ...         </script>          <form name="form1">             ...         </form>      </body>     </html> 

i want validate html form / web page elements using vbscript

this bad decision. solution work under internet explorer.

on client side recomend use javascript on server sode of couse vbscript.


Comments

Popular posts from this blog

python - No exponential form of the z-axis in matplotlib-3D-plots -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -

Why does a .NET 4.0 program produce a system.unauthorizedAccess error on a Windows Server 2012 machine with .NET 4.5 installed? -