<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Client Side Web Development</title><link>http://forums.asp.net/130.aspx</link><description>Client-side programming discussions, including CSS, DHTML, JScript/Javascript, etc. &lt;a href="http://aspadvice.com/SignUp/list.aspx?l=18&amp;c=16" target="_blank"&gt;Email List&lt;/a&gt;</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: Accessing c# dll from GAC in client side asp.net page</title><link>http://forums.asp.net/thread/2310700.aspx</link><pubDate>Mon, 21 Apr 2008 12:06:02 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2310700</guid><dc:creator>NC01</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2310700.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=130&amp;PostID=2310700</wfw:commentRss><description>&lt;p&gt;Glad to be of help!&lt;/p&gt;
&lt;p&gt;NC...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: Accessing c# dll from GAC in client side asp.net page</title><link>http://forums.asp.net/thread/2303059.aspx</link><pubDate>Thu, 17 Apr 2008 03:12:51 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2303059</guid><dc:creator>das.dwipayan</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2303059.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=130&amp;PostID=2303059</wfw:commentRss><description>&lt;p&gt;Thanks for the answering and giving me the trick.&lt;/p&gt;</description></item><item><title>Re: Accessing c# dll from GAC in client side asp.net page</title><link>http://forums.asp.net/thread/2291608.aspx</link><pubDate>Fri, 11 Apr 2008 11:39:43 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2291608</guid><dc:creator>NC01</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2291608.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=130&amp;PostID=2291608</wfw:commentRss><description>&lt;p&gt;Could be you need to tweak the properties of the browser.&lt;/p&gt;
&lt;p&gt;In the Browser Toolbar:&lt;br /&gt;Tools -&amp;gt; Internet Options -&amp;gt; choose the Security tab&lt;br /&gt;Click the Custom Level button&lt;br /&gt;Enable the following settings:&lt;br /&gt;&amp;nbsp;Run ActiveX controls and plug-ins&lt;br /&gt;&amp;nbsp;Initialize and script ActiveX control not marked as safe.&lt;/p&gt;
&lt;p&gt;NC...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: Accessing c# dll from GAC in client side asp.net page</title><link>http://forums.asp.net/thread/2290757.aspx</link><pubDate>Fri, 11 Apr 2008 04:02:21 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2290757</guid><dc:creator>das.dwipayan</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2290757.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=130&amp;PostID=2290757</wfw:commentRss><description>&lt;p&gt;Hi &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; I followed your path and created the C# dll and register in using Regasm&amp;nbsp;and it is working fine when i call the dll methods from the HTML .&lt;/p&gt;
&lt;p&gt;&amp;nbsp; But&lt;/p&gt;
&lt;p&gt;&amp;nbsp; When i copied the same dll to other machine and registered it with Regasm tool and calling from HTML .It is not working.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;What is the reason after registraion on clients machine it is not called from the HTML file.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: Accessing c# dll from GAC in client side asp.net page</title><link>http://forums.asp.net/thread/2204437.aspx</link><pubDate>Fri, 29 Feb 2008 16:23:49 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2204437</guid><dc:creator>NC01</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2204437.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=130&amp;PostID=2204437</wfw:commentRss><description>&lt;p&gt;Here is how to call a simple ActiveX object installed on the client.&lt;/p&gt;
&lt;p&gt;///////////////////////////////////////////////////////////////////////////////////&lt;br /&gt;// AxComp.cs&lt;br /&gt;// Creates a simple ActiveX component.&lt;br /&gt;//&lt;br /&gt;// 1. Compile into a class library, or use: &lt;br /&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; csc /t:library AxComp.cs&lt;br /&gt;// 2. Register and generate the Typelib on the client&amp;#39;s machine with:&lt;br /&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; regasm AxComp.dll /tlb:AxCompNet.dll /codebase&lt;br /&gt;///////////////////////////////////////////////////////////////////////////////////&lt;/p&gt;
&lt;p&gt;using System;&lt;br /&gt;using System.Runtime.InteropServices;&lt;/p&gt;
&lt;p&gt;namespace AxComponent &lt;br /&gt;{&lt;br /&gt;&amp;nbsp;public interface IAxTest&lt;br /&gt;&amp;nbsp;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;string CallIt();&lt;br /&gt;&amp;nbsp;}&lt;/p&gt;
&lt;p&gt;&amp;nbsp;[ClassInterface(ClassInterfaceType.AutoDual)]&lt;br /&gt;&amp;nbsp;public class AxComp : IAxTest&lt;br /&gt;&amp;nbsp;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;public string CallIt()&lt;br /&gt;&amp;nbsp;&amp;nbsp;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;return &amp;quot;This is a test.&amp;quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;}&lt;br /&gt;}&lt;/p&gt;
&lt;p&gt;///////////////////////////////////////////////////////////////////////////////////&lt;br /&gt;// Tester.htm&lt;br /&gt;// Test the ActiveX component.&lt;br /&gt;///////////////////////////////////////////////////////////////////////////////////&lt;/p&gt;
&lt;p&gt;&amp;lt;html&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;script language=JavaScript&amp;gt;&lt;br /&gt;var g_axComponent = new ActiveXObject(&amp;#39;AxComponent.AxComp&amp;#39;);&lt;br /&gt;alert(g_axComponent.CallIt());&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;h1&amp;gt;Tester.htm&amp;lt;/h1&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/p&gt;
&lt;p&gt;Here is a link that might help: &lt;a href="http://aspnet.4guysfromrolla.com/articles/052604-1.aspx"&gt;http://aspnet.4guysfromrolla.com/articles/052604-1.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;NC...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Accessing c# dll from GAC in client side asp.net page</title><link>http://forums.asp.net/thread/2203611.aspx</link><pubDate>Fri, 29 Feb 2008 09:29:41 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2203611</guid><dc:creator>ram123</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2203611.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=130&amp;PostID=2203611</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have C# windows control libarary (Dll), which I could able to load them &lt;br /&gt;into browser using &amp;lt;object&amp;gt; tag with following syntax (In aspx page) and user &lt;br /&gt;able to see the page properly.&lt;/p&gt;
&lt;p&gt;&amp;lt;object name=&amp;quot;chk&amp;quot; id=&amp;quot;chk&amp;quot; classid=&amp;quot;http:GSIM.dll#GSIM.gsimManager&amp;quot;&amp;gt;&amp;lt;/object&amp;gt;&lt;/p&gt;
&lt;p&gt;But we would like to load a client C# windows control libarary instead of &lt;br /&gt;from webserver. Assume that the libarary avilalble in client GAC. &lt;/p&gt;
&lt;p&gt;Is there anyway I can mention in my &amp;lt;object&amp;gt; tag to load the control from &lt;br /&gt;client location instead of from web server ?&lt;/p&gt;
&lt;p&gt;Looking forward for your suggestion.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;</description></item></channel></rss>