I have created a UserControl within a Class Library Project type.
I will be using this as I want the object to perform some ClientSide
scripts.
I have built the project and copied the DLL to the root of my aspx
page and have used the following tag within my aspx page.
<object> id="CleintControl"
ClassID="ClientControl.dll#ClientControl.Main></object>
For some reason no matter what I do the object does not render into my
browser. It just displays as a small square.
Sorry if this is not enough information,
Does anybody know why?
Peter Bromberg [C# MVP] - 25 Oct 2007 14:33 GMT
I would really try to avoid this technique. It's not that reliable across
browsers, and it also requires that the .NET Framework is installed on the
user's machine.
-- Peter
Recursion: see Recursion
site: http://www.eggheadcafe.com
unBlog: http://petesbloggerama.blogspot.com
BlogMetaFinder: http://www.blogmetafinder.com
> I have created a UserControl within a Class Library Project type.
> I will be using this as I want the object to perform some ClientSide
[quoted text clipped - 11 lines]
>
> Does anybody know why?