473,387 Members | 1,603 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,387 software developers and data experts.

Can I get an alert box on my local computer when someone access my web page?


i have created a web application in c# and ASP.NET1.1 that is having a
button on click of which
spawns a web page which is hosted on my localhost!
i have given the URL to my friend.Now he/she access it .
I want a alert box or some notification on my local computer that the
webpage from my localhost
is being accessed.
Is it possible with .NET 1.1 ?
If yes, how?
Thanks in advance

--
salon
------------------------------------------------------------------------
Posted via http://www.codecomments.com
------------------------------------------------------------------------

May 30 '07 #1
4 1804
i'd write a windows service that added itself to the system tray and
exposed a remoting call. then the web service coudl notify it on request
start.

-- bruce (sqlwork.com)

salon wrote:
i have created a web application in c# and ASP.NET1.1 that is having a
button on click of which
spawns a web page which is hosted on my localhost!
i have given the URL to my friend.Now he/she access it .
I want a alert box or some notification on my local computer that the
webpage from my localhost
is being accessed.
Is it possible with .NET 1.1 ?
If yes, how?
Thanks in advance

--
salon
------------------------------------------------------------------------
Posted via http://www.codecomments.com
------------------------------------------------------------------------
May 30 '07 #2
Get the page to send you an email.

--
Best regards,
Dave Colliver.
http://www.AshfieldFOCUS.com
~~
http://www.FOCUSPortals.com - Local franchises available
"salon" <sa**********@mail.codecomments.comwrote in message
news:sa**********@mail.codecomments.com...
>
i have created a web application in c# and ASP.NET1.1 that is having a
button on click of which
spawns a web page which is hosted on my localhost!
i have given the URL to my friend.Now he/she access it .
I want a alert box or some notification on my local computer that the
webpage from my localhost
is being accessed.
Is it possible with .NET 1.1 ?
If yes, how?
Thanks in advance

--
salon
------------------------------------------------------------------------
Posted via http://www.codecomments.com
------------------------------------------------------------------------

May 30 '07 #3
salon wrote:
i have created a web application in c# and ASP.NET1.1 that is having a
button on click of which
spawns a web page which is hosted on my localhost!
i have given the URL to my friend.Now he/she access it .
I want a alert box or some notification on my local computer that the
webpage from my localhost
is being accessed.
Is it possible with .NET 1.1 ?
If yes, how?
Thanks in advance
The web server on your computer can not display anything in the user
interface on your computer, so you need a process running in the user
interface, and a way for the web server to send a signal to it.

This can be done in many different ways. A windows service and remoting,
as bruce suggested, is one of them. A simple text file and a program
that looks for changes in it could be another.

--
Göran Andersson
_____
http://www.guffa.com
May 30 '07 #4
When the web site is accessed it could write some kind of a record to a
local file or database.
Then a local (separate) application could check this periodically and notify
you when something of interest has changed.

--
I hope this helps,
Steve C. Orr,
MCSD, MVP, CSM, ASPInsider
http://SteveOrr.net
"salon" <sa**********@mail.codecomments.comwrote in message
news:sa**********@mail.codecomments.com...
>
i have created a web application in c# and ASP.NET1.1 that is having a
button on click of which
spawns a web page which is hosted on my localhost!
i have given the URL to my friend.Now he/she access it .
I want a alert box or some notification on my local computer that the
webpage from my localhost
is being accessed.
Is it possible with .NET 1.1 ?
If yes, how?
Thanks in advance

--
salon
------------------------------------------------------------------------
Posted via http://www.codecomments.com
------------------------------------------------------------------------
May 30 '07 #5

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

Similar topics

1
by: douglas.gennetten | last post by:
I would like to present a page that would show a default image along with a button. The button would do a local file upload of sorts. I would replace the image with the locally selected file, then...
6
by: Rob | last post by:
Hi, I am working on a project that requires a Windows Service which performs the following file transfer functions. 1. It monitors a specific local directory on a Windows 2003 Server. 2. When...
3
by: Daniel | last post by:
Is it possible to retain local file system read, write, delete access while impersonating for access to a remote drive in a different domain? I need to be able to move files from a local computer...
5
by: Rocky | last post by:
Hi, I have a webform, with 2 textboxs and a submit button. In the text box1, i enter a username and in textbox2 I enter the computer name. Both the username and computer name is in active...
23
by: wylbur37 | last post by:
I'm running an Apache server on my own computer (Windows XP Pro). I wrote a simple PHP script (called test3.php) that I'm running by putting the following URL in the address bar of the browser...
1
by: Joris Lambrecht | last post by:
Hi people, Please take a look at the issue i talk about below. (yes i do realise such functions are publicaly available) The page i'm using uses JSON defined array of image files with...
29
by: Tony Girgenti | last post by:
Hello. I'm developing and testing a web application using VS.NET 2003, VB, .NET Framework 1.1.4322, ASP.NET 1.1.4322 and IIS5.1 on a WIN XP Pro, SP2 computer. I'm using a web form. How do I...
6
by: Robert E. Cooke | last post by:
Any suggestion on how to locate someone in Houston, Texas highly experienced in Microsoft Access database design?
24
by: Jeremy J Starcher | last post by:
While reading c.l.j, I've noticed that some people prefer and indeed even recommend the use of "window.alert()" over "alert()". I can't find any technical reason to make this distinction, and...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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...
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
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,...

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.