473,399 Members | 2,774 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

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
Nov 17 '05 #1
2 1608
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" <ge*********@hotmail.com> wrote in message
news:u$**************@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

Nov 17 '05 #2
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" <ge*********@hotmail.com> wrote in message
news:u$**************@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

Nov 17 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Jack David | last post by:
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)...
6
by: scottyman | last post by:
I can't make this script work properly. I've gone as far as I can with it and the rest is out of my ability. I can do some html editing but I'm lost in the Java world. The script at the bottom of...
2
by: Daniel Di Vita | last post by:
I have created an ASP.NET page that allows the user to page through a result set. I need to expand on this. On that same page I a filed where the user can type in a search string. When they click...
9
by: Gummy | last post by:
Hello, I created a user control that has a ListBox and a RadioButtonList (and other stuff). The idea is that I put the user control on the ASPX page multiple times and each user control will...
5
by: Ted Ngo | last post by:
protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { txtSource.Focus(); frmMain.Visible = true; divWait.Visible = false; btnsubmit.Visible = true;
4
by: Patrick | last post by:
Hi All. I'm newish to xml/xsl so forgive me if this has been discussed before. I tried to google the info, but I'm not sure about terminology. So I am looking for input on a solution or a link...
0
by: ARCHANAA | last post by:
hi, i m using asp.net ,oracle10g. my os is windows xp . i m also using office 2003 . in my application i want to dispaly data from an excel file to datagrid in asp.net page send me an...
2
by: JoeP | last post by:
Hi All, What kind of code is good to display message while the page is loaded: Something like this: Please wait... and when it is fully loaded then to clear the message. Please let me know of...
1
by: sunilkumar123 | last post by:
sir, i am getting problem to dispaly 10 rows at my page and the next 10 record at next page and if you want to come back to previous page
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.