I have an ASP.Net website that pushes image files to the client. Due to wacky needs from our diverse user-base, some client workstations have an ActiveX component that they need to use in this website to manipulate this image, but due to cost, not all users have this control. What I'd like to be able to do is determine if the client has this ActiveX control installed and then script the tag based on the result of this test.
I've been exploring the Request object thoroughly and haven't found anything that does exactly what I need. Request.Browser.ActiveXControls is nice to know, but I need to drill-down further. Is there another namespace I should be looking at? Is this even possible?
Thanks in advance.