ASP.NET server notifications

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

  1. #1

    Default ASP.NET server notifications

    I am working on a ticker kind of a application using
    asp.net. The issue is that we are not allowed to install
    anything on the client. All what i can do is to show a
    aspx page to the clients and auto refresh for the latest
    data after some time.. just being curious if any other
    option to send notification from server through HTTP?
    sundeep Guest

  2. Similar Questions and Discussions

    1. Email Notifications
      Hi, I have just started using Contribute within the past few weeks. I have a few questions which maybe somebody can help me out with. First,...
    2. Change email program used to send notifications
      I need to change the email program that Contribute uses to send draft notification emails. When we send a draft for review and choose to also send...
    3. Email notifications of event log entries
      Does anyone know of a way to send a notification by email of a Windows event, i.e. notification of serious event such as hardware failure? ...
    4. Dynamic Controls & Event Notifications
      Here's a reply to another, related post: The subject of the post is "viewstate question", if you want to find the thread... HTH. -----...
    5. Long Operations User Notifications
      Hello, When submitted, the server will run a number of tasks over a period of several minutes. How do I keep users updated? I would like to send...
  3. #2

    Default Re: ASP.NET server notifications

    It sounds like you're doing all you can do with the limitations that are
    imposed on you.
    No notifications can be sent from the server without it being a response to
    a request from the browser.
    That's just how HTTP works. If you want to use a more complex protocol
    you'd need to install something on the client.

    --
    I hope this helps,
    Steve C. Orr, MCSD
    [url]http://Steve.Orr.net[/url]


    "sundeep" <sundeeps@niit.com> wrote in message
    news:059a01c35d73$430aa860$a501280a@phx.gbl...
    > I am working on a ticker kind of a application using
    > asp.net. The issue is that we are not allowed to install
    > anything on the client. All what i can do is to show a
    > aspx page to the clients and auto refresh for the latest
    > data after some time.. just being curious if any other
    > option to send notification from server through HTTP?

    Steve C. Orr, MCSD 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