Dispaly a page to a specific user

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Dispaly a page to a specific user

    I have a requirement to build the following:
    1: A user logs onto the web application using a user name and password
    (Done)

    2: The user is presented with a web page that contains 3 frames (Done)

    3: Based on some event that takes place within the system, I want to display
    a specific page in one of the frames in the page that is displayed to the
    user......This may happen a number of times while the user is logged into
    the session.

    Any suggestions on how to pop a page into a frame based upon some event. I
    am thinking that this will have to be a service that runs in the
    background....but what I really want to know is how to display to a specific
    IP address??

    Example:

    If phone number = 123-123-1234 then
    Check who is logged on
    Select a logged on user that is not busy
    Display pageABC.aspx to the selected user


    Jack David Guest

  2. Similar Questions and Discussions

    1. Trouble linking from web page to specific page in a PDF
      I'm having trouble linking to specific pages within a pdf. I've tried using page #'s and creating destinations in the pdf (my destination is called...
    2. Error - Running ColdFusion as a specific user
      I followed the instructions in http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_17279 using an active directory domain accoun and cannot...
    3. Sychronizing User Specific Data
      I have read the power of FCS and remote shared objects and everything it has to offer. In fact the most impressive feature I've noticed is FCS...
    4. User Specific Login
      :confused; I want a user to be able to login and view information specific to that user name and only to that user name (i.e. I want each user to...
    5. Login User and Redirect to a specific page - help required
      I'm using ASP/Access 2000. This is what I would like to do. A site has a limited number of users - User Bert logs in and assuming gets thru...
  3. #2

    Default Re: Dispaly a page to a specific user

    Jack,

    The answer is simple: no-can-do-like-that.

    Webpages/sites are based on a pull mechanism (client pulls data from the
    server) and not a push mechanism.
    There is not even a guaranteed active connection between a client and the
    server. Using normal http you won't even be able to determine the "Check who
    is logged on". The user may very well have closed his or her browser.

    All that said there are at least 2 approaches you could look into:
    - Use a meta refresh construction in your webpage that forces a reload of a
    page every x time.
    On the server queue up the tasks you need to distribute and wait for a
    refresh call coming in.

    The second one works cleaner (and more near real-time) but will take a lot
    of hassle and puts a lot of constraints on your environment to be able to
    use it (security settings on the client, firewall stuff, etc etc)
    - Create some sort of client application (activex control perhaps?) that can
    receive notification messages from your server and will trigger the browser
    into reloading. This is from the top of my head so there may be a lot of
    problems here you will have to deal with. I actually think that office XP
    uses such a feature through it's office web components.

    Succes,
    Edwin Kusters

    "Jack David" <geckosphere@hotmail.com> wrote in message
    news:u$Hk6VUSDHA.2676@TK2MSFTNGP10.phx.gbl...
    > I have a requirement to build the following:
    > 1: A user logs onto the web application using a user name and password
    > (Done)
    >
    > 2: The user is presented with a web page that contains 3 frames (Done)
    >
    > 3: Based on some event that takes place within the system, I want to
    display
    > a specific page in one of the frames in the page that is displayed to the
    > user......This may happen a number of times while the user is logged into
    > the session.
    >
    > Any suggestions on how to pop a page into a frame based upon some event. I
    > am thinking that this will have to be a service that runs in the
    > background....but what I really want to know is how to display to a
    specific
    > IP address??
    >
    > Example:
    >
    > If phone number = 123-123-1234 then
    > Check who is logged on
    > Select a logged on user that is not busy
    > Display pageABC.aspx to the selected user
    >
    >

    Edwin Kusters 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