<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <title></title>
</head>
<body>
<font size="2"><font face="Helvetica,sans-serif">Can anyone tell me if
the Revolution "post" command does the same thing as what a web-browser
does when it has a "form.submit()" action?<br>
<br>
For instance, let's say I have a form on a web-page that contains a
form with some input fields (I've eliminated the tag characters in
hopes that email readers won't parse this code):<br>
<br>
<br>
----------<br>
form id="theForm" method="post"
action=<a class="moz-txt-link-rfc2396E" href="http://206.46.136.179/portal/vasp">"http://206.46.136.179/portal/vasp"</a><br>
input type="hidden" name="SERVICE" value="Login"<br>
input type="text" name="UserName" value="usernamehere" ID="Text1"
taborder="1"<br>
input type="password" name="Password" value="abc123" ID="Password1"<br>
input type="button" id="Login" value="Login" onclick="theForm.submit();"<br>
form<br>
---------<br>
<br>
<br>
So when the user hits the button id "Login", the theForm.submit()
javascript action occurs, and the username/password fields are passed
to the server.<br>
<br>
<br>
The question I have is, what is the Revolution call to do this type of
thing?  Is it some form of the POST command?  If so, how would I format
the post command to pass data like this?<br>
<br>
<br>
</font></font>
</body>
</html>