Redirected page to Review data

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Redirected page to Review data

    I have created (using the Wizard) a form and insert record behavior that
    functions fine. It even redirects to the correct page - BUT
    This page is supposed to display the entries from the data entry page to
    allow the printing of a report.

    I have done this before with no problems (meaning I learned NOTHING).

    This one is not picking up the data from the data entry page.
    Any help is greatly appreciated.
    Durwood
    Here is the redirected page code (just a test page for now trying to display
    contents from one from field entry):

    <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD
    HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <title>Untitled Document</title>
    </head>

    <body>
    Mediator's First Name:<br>
    <%= Request.form("MedFName")%>

    </body>
    </html>




    Durwood Edwards Guest

  2. Similar Questions and Discussions

    1. After publishing page I get redirected to C Drive!
      Hi - I can connect to the server, make and edit but after publishing, Contribute redirects me to this page: C:\Program Files\Adobe\Adobe...
    2. LWP::UserAgent and redirected page responses
      Hello. This concerns LWP::UserAgent. If a request is sent to a certain web site, the response in the browser comes back as a completely different...
    3. #24662 [Bgs]: session expires when page redirected to another php page in the same domain.
      ID: 24662 User updated by: narayan at oliveinternet dot com Reported By: narayan at oliveinternet dot com Status: ...
    4. #24662 [Opn]: session expires when page redirected to another php page in the same domain.
      ID: 24662 User updated by: narayan at oliveinternet dot com Reported By: narayan at oliveinternet dot com Status: ...
    5. #24662 [NEW]: session expires when page redirected to another php page in the same domain.
      From: narayan at oliveinternet dot com Operating system: linux PHP version: 4.3.2 PHP Bug Type: Session related Bug...
  3. #2

    Default Re: Redirected page to Review data

    Never mind - I think got it sorted for now.

    I had forgotten to change the action on the data entry page to reference the
    review page and was relying on the redirect. But shouldn't that work?
    Durwood
    "Durwood Edwards" <durwoode@NOSPAMbellsouth.net> wrote in message
    news:ca785b$is2$1@forums.macromedia.com...
    > I have created (using the Wizard) a form and insert record behavior that
    > functions fine. It even redirects to the correct page - BUT
    > This page is supposed to display the entries from the data entry page to
    > allow the printing of a report.
    >
    > I have done this before with no problems (meaning I learned NOTHING).
    >
    > This one is not picking up the data from the data entry page.
    > Any help is greatly appreciated.
    > Durwood
    > Here is the redirected page code (just a test page for now trying to
    display
    > contents from one from field entry):
    >
    > <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD
    > HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    > <html>
    > <head>
    > <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    > <title>Untitled Document</title>
    > </head>
    >
    > <body>
    > Mediator's First Name:<br>
    > <%= Request.form("MedFName")%>
    >
    > </body>
    > </html>
    >
    >
    >
    >

    Durwood Edwards Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139