Community discussion forum

How to POST BACK?!? Pls help...

  • 7 months ago

    I created a webform which requires some verification on the inputted data. I had the verification process in a separated ASP page. My problem is, i need to post back to the original page the result of the verification. Can anyone advise me on how to go about that?

    Ex:

    form.htm - this contains the form. clicking a button in this form will call verify.asp

    verify.asp - contains the code doing the verification. the result of the verification i want to post back to the form.htm

  • Advertisement

    Simply the fastest line-level profiler for .NET ever

    “The low overhead means it has minimal impact on the execution of my program”
    Mark Everest, Development Team Leader, Renault F1 Team Ltd.

    Try out the new ANTS Profiler 4 for yourself. Download your 14-day trial now

  • 6 months ago

    Use javascript on a iframed verify.asp to transfer data to form.htm, as in:

     <%

    Dim Result

    Result = ServerValidationProcedure(Request("Username"), Request("Password"))

    %>

    <script>
    parent.MessageDiv.innerHTML = <%=Result%>
    </script>

     Hope it helps.

    - Shai

Post a reply

Enter your message below

Sign in or Join us (it's free).