Windows control in .ASPX page

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

Guest

I have an .ASPX page in which a DLL (WindowsControlLibrary) has been embedded
through the <OBJECT> tag. I am able to get the control visually by calling it
in the JavaScript.But I am unable to access the Public property/methods from
that WindowsControl.I am using .NET Framework 2.0.
What would be the reason for this ?
Kindly advise.
 
I have an .ASPX page in which a DLL (WindowsControlLibrary) has been
embedded
through the <OBJECT> tag. I am able to get the control visually by calling it
in the JavaScript.But I am unable to access the Public property/methods from
that WindowsControl.I am using .NET Framework 2.0.
What would be the reason for this ?

You should be able to access them, example:
http://www.codeproject.com/cs/miscctrl/htmlwincontrol.asp

Have you included the form name in your statement to access the control?
e.g. Form1.YourControl.Property
 
Back
Top