Get the page to send you an email.
...
> 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
> ------------------------------------------------------------------------
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.
--
Gran Andersson
_____
http://www.guffa.com
-----------------------------------------------Reply-----------------------------------------------
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" <salon.2re
@mail.codecomments.com> wrote in message
news:salon.2recy0@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
> ------------------------------------------------------------------------