> Generally, can you tell me if what you suggest is particularly difficult or > not? If you're used to programming on Windows creating a COM object shouldn't be too hard. Have a quick google for "com object tutorial {insert language of choice here}" and you should find some skeleton projects to base off. > I've got MS FrontPage 2002, should I use this to build the ASP page? I've not used front page. But the ASP side of things would be as simple as; --- Example.ASP --- <% dim objTemperature dim fltTemperature ' Replace logan.TempControl with the name of the class set objTempControl = Server.CreateObject("logan.TempControl") fltTemperature = objTempControl.currentTemperature set objTempControl = nothing %>
'allo 'allo. The current temperature is: <%= fltTemperature %>
--- END --- -- Michael Davidson Fortune: If you had any brains, you'd be dangerous. -- http://www.piclist.com hint: The PICList is archived three different ways. See http://www.piclist.com/#archives for details.