I need some assistance, too. I am implementing the PalmPad web-based remote. It works great on the server side ( when executed/viewed from the server machine), but when I try to click the lights on buttons on a client machine, it appears to try to execute it locally, rather than on the server side. How can I fix this. I use Microsoft's Expression web editor. and here is a copy of the actual code generated...
<a href="javascript:getUSCode(1,'on');" onMouseOver="ppImgOn('Button1');window.status='';" onMouseout="ppImgOff('Button1');window.status='';">
<img name="Button1" src="ActiveHouse_files/palmpad/Button1_off.gif" width=34 height=21 border=0 onclick="ActiveHomeObj.SendAction("sendplc", "j1 on");" alt=""></a></td>
you can see the ActiveHomeObj.SendAction("sendplc", "j1 on")" section that executes the command, but how can I force it to run against the server-machine instead of whatever machine is viewing the page? Thanks