Not signed in (Sign In)

Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.


    • CommentAuthorashmi
    • CommentTimeOct 30th 2006
     
    Is there something that i could do to split my website into 2 parts so that only half of it reloads. then on the other half i could have like a timer or something.
    • CommentAuthorviane
    • CommentTimeOct 30th 2006
     
    There is a javascript password script: http://javascriptkit.com/script/cut34.shtml

    I've used it on sites before and found it to be useful - I wouldnt recommend using it on anything hugely confidential - but I have used it on things like blocking off areas for only a specific customers use where their training manuals etc are.
    • CommentAuthorspydev
    • CommentTimeNov 11th 2006
     
    Use Frames
    if you are using any tool like dreamweaver or frontpage then you can easily add frames in your webpage or else

    use
    <frameset cols="150,*">
    <frame name="links" target="main">
    <frame name="main">
    <noframes>
    <body>

    <p>This page uses frames, but your browser doesn't support them.</p>

    </body>
    </noframes>
    </frameset>
    no frame area is where you want to show content not in the frames
    • CommentAuthorjustnajm
    • CommentTimeNov 17th 2006
     
    Hi all,

    spydev its for you:

    You suggest frames for the problem offcourse its gonna do that but frames are not supported by some of the old browsers and visitors with such browsers may not be able to see the site.

    Please if possible give me your suggestions of using xml for the same purpose and how xml can do it just introduction so I can pick it from any book.