-
Hi,
I've created an ActiveX controls which consists of several textboxes that require input. I have placed this control on a Web Page. This ActiveX control was developed in VB6.
How can I interface the ActiveX control input into my web page? In other words...how can I pass the values from the control into the web page to be updated on the server?
Thanks,
Jeff
-
You have to create hidden textboxes and use the onsubmit event to getthe data from the activeX control and put it into the hidden textboxes just before the form is submitted.
If someone knows of an easier way, I'm all ears..but that's how I've been doing it..