Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default pop up window

    Does anone know if it is possible to write the code allowing the user to
    browse directories and files on the server with some kind of window ?

    I know this could be insecure but can it be done and how?

    Thanks in Advance




    Henry Guest

  2. Similar Questions and Discussions

    1. Page_Load not fired when window.open used to load window.
      Hello John, Did you mean that the problem only happens after you upgrade to VS 2003 and framework 1.1? Does the problem exist in VS 2002 and...
    2. insert a frame or window into adobe acrobat or reader window
      Using Windows OS XP or Vista. Can you ad a frame or window into the main window to allow saving a document through another application? I have an...
    3. New Window Target doesn't open a new window inContribute but does in Firefox
      I have made the neccessary steps to allow a link to open in a new window by choosing "New Window" as the Target, and when testing the published page...
    4. Child window property window.opener null after postback
      I have an webform from which I open a child window to display a calendar. When a date is selected in the calendar window it attempts to set the...
    5. dlopen is failing on Window XP works great on Window 2000
      Michael Davis <mdavis@sevasoftware.com> writes: Check the permission of the so file: $ ls -l...
  3. #2

    Default Re: pop up window

    If you just want to show the names of the folders and files, try
    FileSystemObject.
    [url]http://www.aspfaq.com/show.asp?id=2039[/url]

    "Henry" <paul@themedialounge.com> wrote in message
    news:#fEh5nuSDHA.1868@TK2MSFTNGP11.phx.gbl...
    > Does anone know if it is possible to write the code allowing the user
    to
    > browse directories and files on the server with some kind of window ?
    >
    > I know this could be insecure but can it be done and how?

    Kris Eiben Guest

  4. #3

    Default Pop Up Window

    I designed a pop up window which consists of a form, tables within the form to hold the product image, product details, and a close button. The popup page will display a larger view and product details of items on my product page once a product is clicked. Then I used dreamweavers default behaviors to open the popup page once a image is clicked on the product page. Everything works fine except the image will not show. I've included the code for the pop up page with this post. I used dreamweaver behaviors to open the new window. I would greatly appreciate if someone could help me with this problem.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <HTML>
    <TITLE>Tech 6 Boot BLK/BLK </TITLE>
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_reloadPage(init) { //reloads the window if Nav4 resized
    if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
    else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
    }
    MM_reloadPage(true);
    //-->
    </script>
    <BODY onBlur="self.focus()" bgcolor=ffffff>
    <form>
    <table width="408" border=1 cellpadding=0 cellspacing="0" bordercolor="#000000">
    <tr>
    <td width="201" align=center> <div align="left"><img src="/Images/atv_catalog/tech_6/tech6blk.jpg" width="200" height="230">
    </div></td>
    <td width="184" align=center><table width="196" height="114" border="0" align="left" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
    <tr>
    <td height="19" bgcolor="#CCCCCC"> <div align="center"><strong><font color="#000000" size="2" face="Arial, Helvetica, sans-serif">Product
    Detail</font></strong></div></td>
    </tr>
    <tr>
    <td height="19"><ul>
    <li><font color="#000000" size="2" face="Arial, Helvetica, sans-serif">Ergonomically
    designed for top Performance</font></li>
    </ul></td>
    </tr>
    <tr>
    <td height="19"><ul>
    <li><font color="#000000" size="2" face="Arial, Helvetica, sans-serif">Ready
    to race out of the box; little break-in-required</font></li>
    </ul></td>
    </tr>
    <tr>
    <td height="19"><ul>
    <li><font color="#000000" size="2" face="Arial, Helvetica, sans-serif">Two
    middle buckles that connect around the ankles and flexible inserts
    provide unprecedented lower leg support.</font></li>
    </ul></td>
    </tr>
    <tr>
    <td height="19"><ul>
    <li><font color="#000000" size="2" face="Arial, Helvetica, sans-serif">Four
    Adjustable, Replaceable nylon buckles, top and bottoms levels
    are reversed for better leverage and protection</font></li>
    </ul></td>
    </tr>
    <tr>
    <td height="19"><ul>
    <li><font color="#000000" size="2" face="Arial, Helvetica, sans-serif">Full-grain
    leather construction</font></li>
    </ul></td>
    </tr>
    </table></td>
    </tr>
    <tr bgcolor="#CCCCCC">
    <td colspan="2" align=center>
    <div align="center">
    <input name="button" type=button onClick="self.close()" value="Close">
    </div></td>
    </tr>
    </table>
    </form>
    <div align="left"></div>
    </BODY>
    </HTML>



    webjohn webforumsuser@macromedia.com Guest

  5. #4

    Default Pop Up Window

    Hi,
    Can anyone help me? I am a beginner at Director (8.5). I am creating a CD ROM
    for a client, who has asked for the "Contact Us" button link to a Pop Up window
    which will appear on top of the original movie. It also needs a close button to
    get rid of it. Are these both possible?

    LizzyBomber Guest

  6. #5

    Default Re: Pop Up Window


    "LizzyBomber" <webforumsuser@macromedia.com> wrote in message
    news:c1cjn0$985$1@forums.macromedia.com...
    > Hi,
    > Can anyone help me? I am a beginner at Director (8.5). I am creating a CD
    ROM
    > for a client, who has asked for the "Contact Us" button link to a Pop Up
    window
    > which will appear on top of the original movie. It also needs a close
    button to
    > get rid of it. Are these both possible?
    hi yes a simple way would be just to have a hidden graphic which reveals
    itself when requested and goes away when closed. You can do this with the
    ..visible attribute (which affects the whole channel). You can make one
    graphic appear on top of the other by putting it in a higher numbered
    channel than the earlier graphic.

    so that would be something like this on the contact us button

    on mouseUp
    sprite(12).visible = true -- contact us box
    sprite(13).visible = true -- close button
    end

    and this on the close button

    on mouseUp
    sprite(12).visible = false
    sprite(13).visible = false
    end

    there are many ways of doing this, but this will direct you to one of them.
    Make sure you don't have any other sprites use the dedicated channels (12,
    13 in this example) as as I said the visible attribute affects the whole
    channel.



    David Downie Guest

  7. #6

    Default Re: Pop Up Window

    I didn't mention the channels in 12 and 13 would have to be invisible to
    start off with. So perhaps in the close button behaviour you might also have

    on beginSprite
    sprite(12).visible = false
    sprite(13).visible = false
    end

    as I understand it beginSprite should be executed prior to the screen being
    drawn, although there appears to be a bug in scripts doing this in frame 1
    in full screen projectors so you should start your movie from another frame
    and go to that frame directly when running the movie.


    David Downie Guest

  8. #7

    Default pop up window

    :confused;

    I am trying to desing a pop up window which will come up after a button is
    pressed. I get the actual size window showing it cannot find the page? How
    can I create a pop up window using Dreamweaver MX. I have tried 40 times by
    reading the instructions from the google search and I still cannot get it to
    display the actual page.

    Thank You.

    raltomondo Guest

  9. #8

    Default Re: pop up window

    If you're working in Code view, just add 'target='_blank" to the link tag:

    <a href="yourpage.html" target="_blank">link text</a>

    If you're working in design view, just change the target to _blank

    rilkesf 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