Reputation: 2904
What is the difference between having an ActiveX control written in C# on your website, and having a website written in C#?
Upvotes: 0
Views: 247
Reputation: 51644
Server-side C# produces HTML that can be requested and displayed by virtualy every browser on every OS.
ActiveX controls are proprietary client-side applications that run only in a very specific client configuration, i.e. Internet Explorer on a limited set of OS.
Upvotes: 2
Reputation: 223282
A website written in C# - This will be hosted on IIS, and generate a HTML response to be send to the client browser. This runs at the server end.
ActiveX control - ActiveX controls, mini program building blocks, can serve to create distributed applications working over the Internet through web browsers, something similar to Java Applets. This executes at the client end
Upvotes: 1