windows control in aspx page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a windows control in an aspx page. It receives data from some serial
hardware on the client. How do I get this data to an aspx page so that I can
post it to the server? I will need to post an instrument id to the server
and return some data to the usercontrol.

How is this done??

Thanks
Mike
 
the easiest is have the window control open the connection to the server and
send the data. otherwise you will use client script to access the control,
and a hidden iframe, or the XMLHTTP control for the client script to send
data to the server.

-- bruce (sqlwork.com)
 
Can the control window open a connection to an oracle server without the
oracle client on the client machine??

Thanks
Mike
 
Back
Top