Ask a Question related to ASP.NET Building Controls, Design and Development.
-
Leslie #1
Can ActiveX controls be built with C#
I would like to build a control that can be deployed from a web site that
runs in IE. The component will have no user interface. It needs to collect
information from the local workstation and either drop the information in a
cookie which will be returned to the server or call the server directly.
Can this be done? Does anyone know of tutorials or examples that illustrate
using C# to build a control that will execute from within IE and be callable
through jscript or vbscript?
Thanks,
Leslie
Leslie Guest
-
ActiveX controls and IE 6
I have navigation bars in my website and after IE6 was installed the browser blocks the swap images and waits untill I click the IE security bar to... -
How to exchange data between two activex controls
Hi guys, I have a question about activex controls in director like the message title. Two activex controls in the scene ,the first one (FIR) need... -
using activex controls
Sorry, I posted this here because this code will be included on an asp page. I will try a different forum. IE newsgroup, as it page:... -
.NET objects as ActiveX controls?
Hi, You need to dress your .Net in COM suit. refer to : http://msdn.microsoft.com/msdnmag/issues/02/01/UserCtrl/default.aspx Natty Gur, CTO... -
ActiveX Controls
I have MSN as my internet service provider, and when I go into PHOTOS, I get a Warning Message that says "Your current security settings prohibit... -
Steve C. Orr [MVP, MCSD] #2
Re: Can ActiveX controls be built with C#
ActiveX controls are really a COM thing. They can be built in .NET but it
doesn't feel entirely natural.
The more natural alternative is to host windows forms controls within a web
page, as described here:
[url]http://SteveOrr.net/articles/WinformControls.aspx[/url]
--
I hope this helps,
Steve C. Orr, MCSD, MVP
[url]http://SteveOrr.net[/url]
"Leslie" <mason@newsgroup.nospam> wrote in message
news:4C504AB0-328D-48F6-AF04-41D2AAE03542@microsoft.com...>I would like to build a control that can be deployed from a web site that
> runs in IE. The component will have no user interface. It needs to collect
> information from the local workstation and either drop the information in
> a
> cookie which will be returned to the server or call the server directly.
> Can this be done? Does anyone know of tutorials or examples that
> illustrate
> using C# to build a control that will execute from within IE and be
> callable
> through jscript or vbscript?
>
> Thanks,
>
> Leslie
Steve C. Orr [MVP, MCSD] Guest
-
Leslie #3
Re: Can ActiveX controls be built with C#
Steve,
Thanks, that is just what I was looking for. One other question, you
mentioned several functions that are prohibited. Is the prohibition absolute
or can exceptions be made using the Framework Wizard. Specifically, can calls
to unmanaged code be allowed uisng the Framework Wizard? Is any of the
security affected by digital signatures?
Thanks,
Leslie
"Steve C. Orr [MVP, MCSD]" wrote:
> ActiveX controls are really a COM thing. They can be built in .NET but it
> doesn't feel entirely natural.
> The more natural alternative is to host windows forms controls within a web
> page, as described here:
> [url]http://SteveOrr.net/articles/WinformControls.aspx[/url]
>
> --
> I hope this helps,
> Steve C. Orr, MCSD, MVP
> [url]http://SteveOrr.net[/url]
>
>
> "Leslie" <mason@newsgroup.nospam> wrote in message
> news:4C504AB0-328D-48F6-AF04-41D2AAE03542@microsoft.com...>> >I would like to build a control that can be deployed from a web site that
> > runs in IE. The component will have no user interface. It needs to collect
> > information from the local workstation and either drop the information in
> > a
> > cookie which will be returned to the server or call the server directly.
> > Can this be done? Does anyone know of tutorials or examples that
> > illustrate
> > using C# to build a control that will execute from within IE and be
> > callable
> > through jscript or vbscript?
> >
> > Thanks,
> >
> > Leslie
>
>Leslie Guest
-
Yuan Ren[MSFT] #4
Re: Can ActiveX controls be built with C#
Hi Leslie,
Thanks for posting!
"Is the prohibition absolute or can exceptions be made using the Framework
Wizard. Specifically, can calls to unmanaged code be allowed uisng the
Framework Wizard?"
The prohibition is based on the setting of the CAS in the target machine.
If the code is full trusted in the target machine, the code which even
contains interop operation will be executed.
"Is any of the security affected by digital signatures?"
Yes, you are correct. The signature actually tells the target machine the
code is trusted and safe. If the target machine trusts the publisher
company, the code also will be executed.
Regards,
Yuan Ren [MSFT]
Microsoft Online Support
Yuan Ren[MSFT] Guest
-
Leslie #5
Re: Can ActiveX controls be built with C#
Steve,
Will the techniques described in your article work with .NET 1.1 or is 2.0
required?
Thanks,
Leslie
"Steve C. Orr [MVP, MCSD]" wrote:
> ActiveX controls are really a COM thing. They can be built in .NET but it
> doesn't feel entirely natural.
> The more natural alternative is to host windows forms controls within a web
> page, as described here:
> [url]http://SteveOrr.net/articles/WinformControls.aspx[/url]
>
> --
> I hope this helps,
> Steve C. Orr, MCSD, MVP
> [url]http://SteveOrr.net[/url]
>
>
> "Leslie" <mason@newsgroup.nospam> wrote in message
> news:4C504AB0-328D-48F6-AF04-41D2AAE03542@microsoft.com...>> >I would like to build a control that can be deployed from a web site that
> > runs in IE. The component will have no user interface. It needs to collect
> > information from the local workstation and either drop the information in
> > a
> > cookie which will be returned to the server or call the server directly.
> > Can this be done? Does anyone know of tutorials or examples that
> > illustrate
> > using C# to build a control that will execute from within IE and be
> > callable
> > through jscript or vbscript?
> >
> > Thanks,
> >
> > Leslie
>
>Leslie Guest
-
Steve C. Orr [MVP, MCSD] #6
Re: Can ActiveX controls be built with C#
They will work with .NET 1.1.
--
I hope this helps,
Steve C. Orr, MCSD, MVP
[url]http://SteveOrr.net[/url]
"Leslie" <mason@newsgroup.nospam> wrote in message
news:956D84A2-7AF8-4D11-9B31-D7CA8D32C178@microsoft.com...> Steve,
>
> Will the techniques described in your article work with .NET 1.1 or is 2.0
> required?
>
> Thanks,
>
> Leslie
>
> "Steve C. Orr [MVP, MCSD]" wrote:
>>> ActiveX controls are really a COM thing. They can be built in .NET but
>> it
>> doesn't feel entirely natural.
>> The more natural alternative is to host windows forms controls within a
>> web
>> page, as described here:
>> [url]http://SteveOrr.net/articles/WinformControls.aspx[/url]
>>
>> --
>> I hope this helps,
>> Steve C. Orr, MCSD, MVP
>> [url]http://SteveOrr.net[/url]
>>
>>
>> "Leslie" <mason@newsgroup.nospam> wrote in message
>> news:4C504AB0-328D-48F6-AF04-41D2AAE03542@microsoft.com...>>>> >I would like to build a control that can be deployed from a web site
>> >that
>> > runs in IE. The component will have no user interface. It needs to
>> > collect
>> > information from the local workstation and either drop the information
>> > in
>> > a
>> > cookie which will be returned to the server or call the server
>> > directly.
>> > Can this be done? Does anyone know of tutorials or examples that
>> > illustrate
>> > using C# to build a control that will execute from within IE and be
>> > callable
>> > through jscript or vbscript?
>> >
>> > Thanks,
>> >
>> > Leslie
>>
>>
Steve C. Orr [MVP, MCSD] Guest



Reply With Quote

