C
Charles A. Lackman
Hello,
I have an ActiveX Control That has a Clear Property and a Text Property.
The Properties are accessible the following way (From the HTML Page):
<SCRIPT language="vbscript">
Sub OnClear
document.frmMain.MyControl1.Clear
end sub
Sub OnText
document.frmMain.MyControl1.Text
end sub
</SCRIPT>
How can I access these Properties from the Code Behind Page in ASPX?
i.e. Dim AString as string = MyControl1.Text
(Nothing Happends; MyControl1 is not shown in the code behind page)
Thanks,
Chuck
I have an ActiveX Control That has a Clear Property and a Text Property.
The Properties are accessible the following way (From the HTML Page):
<SCRIPT language="vbscript">
Sub OnClear
document.frmMain.MyControl1.Clear
end sub
Sub OnText
document.frmMain.MyControl1.Text
end sub
</SCRIPT>
How can I access these Properties from the Code Behind Page in ASPX?
i.e. Dim AString as string = MyControl1.Text
(Nothing Happends; MyControl1 is not shown in the code behind page)
Thanks,
Chuck