Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / General / June 2007

Tip: Looking for answers? Try searching our database.

Controlin an electrical device through a Web page

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Oriane - 12 Jun 2007 11:16 GMT
Hi,

I've to design a Web page which :
- give the stata of an electrical device. For instance, the state is OFF or
ON for a light.
- allow the user to intercat with that device. Typically he should be able
to swich on or off the light.

A windows application is already written to interact and poll the devices.
Now concerning the "polling", I intend to use RSS (but I am a newbie in this
area). Is is a good choice ? Or do I have to insert a Timer in the Web page
to periodically poll the Windows appli ?

Best regards

Oriane
Hans Kesting - 12 Jun 2007 15:40 GMT
> Hi,
>
[quoted text clipped - 13 lines]
>
> Oriane

A Timer inside the server code of the page will not work as hoped: as soon
as the request is finished, the page-instance is destroyed, so your timer
will never have the chance to "do" anything.
Furthermore, it's not easy to update the client (browser) when something
on the server changes.

What you *can* do is add this line to the <head> section of your page:
    <meta http-equiv="refresh" content="5">
This will reload the page every 5 seconds, causing a new request on the server.
Test there the current value of that device and act accordingly.

Hans Kesting
bruce barker - 12 Jun 2007 16:09 GMT
you want a multi-tier design. create a nt service that contains polling
code and has on, off and read commands. expose these commands as a
remoting service.

now you can create web page that call the remoting service to actually
control the light.

-- bruce (sqlwork.com)

> Hi,
>
[quoted text clipped - 12 lines]
>
> Oriane

Rate this thread:







Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.