Windows control in .ASPX page

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.
 
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 ?

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top