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

  1. #1

    Default asp for dummies

    WARNING! I'M NEW TO ALL THIS!!!

    Hi all! When I was at college a few years back, I learned asp (not ASP.NET!!)
    as part of my course. That segment was short, and I was not as interested in
    the web design component as the 3D animation aspect, so by now I've forgotten
    most of the asp I learned... Now I need asp for a site that I'm making for
    myself (a friend recommend PHP, but I dont have the time and patience to learn
    it). Anyway, my problem is this:

    When I go to preview asp pages locally, they appear OK, but when they are
    inside a frameset, instead of the page display as intended, all you see in the
    frame is the HTML/ASP code...

    I am running XP Pro with IIS, but I'm not sure how to set up my system to act
    as a local server for testing purposes. Can someone please tell me how to
    configure IIS/Dreamweaver so I can test view my site properly?

    DanManOZ Guest

  2. Similar Questions and Discussions

    1. Testing server for dummies
      Can somebody tell me how to set up a testing server? I'm stymied by the pathway option in the site definitions dialog box. My files are in a folder...
    2. Javascript forms for dummies?
      :confused; I'm working on a website for a distributer of alcoholic beverages, and I need to implement a gateway that collects the user's age and...
    3. Cartography for Dummies
      Just getting started with FreeHand (I have MX), so this is pretty basic. I'm trying to make a map. Roads are paths with two strokes, first a light...
    4. Using Dummies when skining a character
      Hey I am trying to set a character up to do facial animation and would like to use dummies to translate motion instead of bones and rotation. I...
    5. Kernel Options for Dummies...
      Hi, I'm compiling a kernel using the docs provided at http://newbiedoc.sourceforge.net/system/kernel-pkg.html and it's all good but is there a doc...
  3. #2

    Default Re: asp for dummies

    Verify IIS working:
    1) Using Internet Explorer browser to [url]http://localhost[/url]
    Does that open a page?
    2) Stick a dead simple <html><h1>Hello</h1></html> page wwwroot
    path is (usually) c:\inetpub\wwwroot\mytest.html
    3) Use IE to browse to your test page
    [url]http://localhost/mytest.html[/url]
    - Does that appear?
    4) copy your mytest.html to mytest.asp
    Change 'hello' to <% response.write now%>
    browse to test page
    [url]http://localhost/mytest.asp[/url]

    If you get this far IIS is well enough setup to serve static HTML and dynamic
    ASP pages and we can take a look at DW config
    Andy

    byardaj 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