Quote:
Originally posted by radum
i would suggest you to keep it as simple as possible: instead of 'pushing' data to the client computers, make the client machines pull the data from the coffee server. it would be a nightmare to poke around and figure out which client logged in, what are the new clients that have to be registered and so on. and why complicating the whole stuff with low-level winsock, when you can have a web server with a few asp pages, and a regular browser interface. this way you only have to pull from the database the information, format it in html and send it over whenever requested. 90% of the job is done.
asp is somehow a hybrid between html code and visual basic (or java) script. imagine that you write a server application that generates the html code on-the-fly, and you dont even have to be super-experienced for that.
Radum, thanx.