HighTechTalks DotNet Forums  

Activex like component usage in dotnet ?

Dotnet FAQs microsoft.public.dotnet.faqs


Discuss Activex like component usage in dotnet ? in the Dotnet FAQs forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
K
 
Posts: n/a

Default Activex like component usage in dotnet ? - 09-04-2003 , 12:02 AM






In traditional way, if my client is runnign IE, I can put a file in the web
server, then the client can run the ActiveX object. Does it have similar
technology in .NET ? I'd like to run my web server in apache under Linux,
but i want to have a UI componet in .NET running in client side without
installing in client computer at first. Is it feassible ?



Reply With Quote
  #2  
Old   
Dmitriy Lapshin [C# / .NET MVP]
 
Posts: n/a

Default Re: Activex like component usage in dotnet ? - 09-05-2003 , 04:44 AM






Hi,

Windows Forms controls can be hosted in the client's browser much like
ActiveX controls. This, however, requires presence of the .NET Framework on
the user's computer as well as certain version of the browser (I suppose IE
6.0 and above). There should not be any restrictions on a technology used at
the server side - that is, I think there's no problem with Linux/Apache.

Windows Forms controls doesn't require installation, they will be just
downloaded from server and run. They, however, run under tight security
restrictions, unlike ActiveX controls that could do anything user's
permissions allowed them to do.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://x-unity.miik.com.ua/teststudio.aspx
Bring the power of unit testing to VS .NET IDE

"K" <k (AT) taka (DOT) com> wrote

Quote:
In traditional way, if my client is runnign IE, I can put a file in the
web
server, then the client can run the ActiveX object. Does it have similar
technology in .NET ? I'd like to run my web server in apache under Linux,
but i want to have a UI componet in .NET running in client side without
installing in client computer at first. Is it feassible ?




Reply With Quote
  #3  
Old   
Mercy Vincent
 
Posts: n/a

Default Re: Activex like component usage in dotnet ? - 09-05-2003 , 01:05 PM



How about updating a file locally in client computer ??
I supposed my custom control can be downloaded ( the assembly ) to user
side, right ?


"Dmitriy Lapshin [C# / .NET MVP]" <x-code (AT) no-spam-please (DOT) hotpop.com> wrote
in message news:ukoM9n4cDHA.3240 (AT) TK2MSFTNGP11 (DOT) phx.gbl...
Quote:
Hi,

Windows Forms controls can be hosted in the client's browser much like
ActiveX controls. This, however, requires presence of the .NET Framework
on
the user's computer as well as certain version of the browser (I suppose
IE
6.0 and above). There should not be any restrictions on a technology used
at
the server side - that is, I think there's no problem with Linux/Apache.

Windows Forms controls doesn't require installation, they will be just
downloaded from server and run. They, however, run under tight security
restrictions, unlike ActiveX controls that could do anything user's
permissions allowed them to do.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://x-unity.miik.com.ua/teststudio.aspx
Bring the power of unit testing to VS .NET IDE

"K" <k (AT) taka (DOT) com> wrote in message
news:eBCzvlpcDHA.1128 (AT) tk2msftngp13 (DOT) phx.gbl...
In traditional way, if my client is runnign IE, I can put a file in the
web
server, then the client can run the ActiveX object. Does it have similar
technology in .NET ? I'd like to run my web server in apache under
Linux,
but i want to have a UI componet in .NET running in client side without
installing in client computer at first. Is it feassible ?






Reply With Quote
  #4  
Old   
Dmitriy Lapshin [C# / .NET MVP]
 
Posts: n/a

Default Re: Activex like component usage in dotnet ? - 09-08-2003 , 07:15 AM



Yes, the user's browser will download the user control's assembly to his/her
local PC. But I am not so sure about updating - just never did such things
in practice.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://x-unity.miik.com.ua/teststudio.aspx
Bring the power of unit testing to VS .NET IDE

"Mercy Vincent" <mercyvincent (AT) yahoo (DOT) com> wrote

Quote:
How about updating a file locally in client computer ??
I supposed my custom control can be downloaded ( the assembly ) to user
side, right ?


"Dmitriy Lapshin [C# / .NET MVP]" <x-code (AT) no-spam-please (DOT) hotpop.com> wrote
in message news:ukoM9n4cDHA.3240 (AT) TK2MSFTNGP11 (DOT) phx.gbl...
Hi,

Windows Forms controls can be hosted in the client's browser much like
ActiveX controls. This, however, requires presence of the .NET Framework
on
the user's computer as well as certain version of the browser (I suppose
IE
6.0 and above). There should not be any restrictions on a technology
used
at
the server side - that is, I think there's no problem with Linux/Apache.

Windows Forms controls doesn't require installation, they will be just
downloaded from server and run. They, however, run under tight security
restrictions, unlike ActiveX controls that could do anything user's
permissions allowed them to do.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://x-unity.miik.com.ua/teststudio.aspx
Bring the power of unit testing to VS .NET IDE

"K" <k (AT) taka (DOT) com> wrote in message
news:eBCzvlpcDHA.1128 (AT) tk2msftngp13 (DOT) phx.gbl...
In traditional way, if my client is runnign IE, I can put a file in
the
web
server, then the client can run the ActiveX object. Does it have
similar
technology in .NET ? I'd like to run my web server in apache under
Linux,
but i want to have a UI componet in .NET running in client side
without
installing in client computer at first. Is it feassible ?







Reply With Quote
  #5  
Old   
Dino Chiesa [MSFT]
 
Posts: n/a

Default Re: Activex like component usage in dotnet ? - 09-15-2003 , 06:07 PM



Q1. Does .NET have something that allows me to host controls in IE?
Yes. Google for IEHost, or look here:
http://www.winisp.net/cheeso/controltest.htm

for a working example and a few links.
or
http://msdn.microsoft.com/msdnmag/is...l/default.aspx
for an article

Q2a. Can I download the component from IIS to a .NET IE browser and
dynamically run it?
Yes.

Q2b. Can I download the component from Apache/Linux to a .NET IE browser and
dynamically run it?
No. I don't believe this is possible. I cannot recall what the issue is.




"K" <k (AT) taka (DOT) com> wrote

Quote:
In traditional way, if my client is runnign IE, I can put a file in the
web
server, then the client can run the ActiveX object. Does it have similar
technology in .NET ? I'd like to run my web server in apache under Linux,
but i want to have a UI componet in .NET running in client side without
installing in client computer at first. Is it feassible ?





Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.