Ask a Question related to Macromedia Flash Data Integration, Design and Development.

  1. #1

    Default Help for a newbie

    Hi All,
    I have 3 files I am using, Index.html, Test.asp, MyNewpage.html.
    I am try to load MyNewPage.html into Test.asp.

    Index.html has a link as follows:
    <a href="test.asp?np=mynewpage.htm">My Link</a>

    Here is what I have in test.asp:
    <html>
    <head>
    <title>Test Page</title>
    </head>
    <body>
    <%
    Dim newpage
    newpage = request.querystring("np")
    server.execute newpage
    %>
    </body>
    </html>

    What i keep getting is an error, page cannot be found.
    I have tried using fully qualified names and still get an error.

    Any help would be appreciated.
    TIA
    Steve Karnath


    SBC Global Guest

  2. Similar Questions and Discussions

    1. A newbie with a newbie question
      Good afternoon everyone, My Name is Dusty I am new to this forum and pretty new to Acrobat. I have Acrobat 9 running on an IMAC running 10.5.2 I...
    2. newbie ill q
      Hey everyone, I have to work on some logos for my place of business... I've scanned them in , edited them in Photoshop, and then made a workpath...
    3. Newbie needs help
      I am teaching myself Flash using Flash MX.. I have created a small Flash movie but can't find any direction on how to get rid of the excess page ...
    4. Please help a newbie!
      Hi, I am just starting out using Flash MX. I just want some general knowledge on Flash......I am planning on making a website, but I have no idea...
    5. Newbie help with LWP
      When you login the server must pass a token back to the browser so that the browser can identify itself to the server in the next request. This is...
  3. #2

    Default RE: Help for a newbie

    Are these three files in same virtual folder? You also can use following
    code for testing:

    <%
    Dim newpage
    newpage = request.querystring("np")
    response.Write newpage
    %>

    To check if the "newpage" is the right string you want.

    Luke

    "Microsoft Security Announcement: Have you installed the patch for
    Microsoft Security Bulletin MS03-026?? If not Microsoft strongly advises
    you to review the information at the following link regarding Microsoft
    Security Bulletin MS03-026
    [url]http://www.microsoft.com/security/security_bulletins/ms03-026.asp[/url] and/or to
    visit Windows Update at [url]http://windowsupdate.microsoft.com[/url] to install the
    patch. Running the SCAN program from the Windows Update site will help to
    insure you are current with all security patches, not just MS03-026."

    MSFT Guest

  4. #3

    Default Help for a Newbie

    Hey All

    I'm a complete newbie when it comes to Flash Data Integration :o . On my new
    site, I want to integrate Flash and PHP, so that certain parts of my flash file
    display information from a MySQL database, preferably through PHP. Are there
    any really simple tutorials on the net that you could recommend, or is anyone
    willing to help me over MSN or ICQ or something. I'd really appreciate the
    help. Of course, anyone that does give me a hand will be given their due
    recognition when the site is up. Thanks!

    AndyMills Guest

  5. #4

    Default Re: Help for a Newbie

    [url]http://www.sephiroth.it[/url] is an excellence source for Flash/PHP combinations.
    LuigiL 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