I'm working with a intranet website written in ASP.NET and need to be able to access a DLL that is installed on the user's computer. I can get it working if I'm hosting the site locally but when I try to access it from another machine it does not work. I realize this could be a dangerous tool to use but if you have a valid business purpose for doing this, is it possible?
I've looked around and there might be a way to use JavaScript to do this but I'm wondering if there is anything else.
To make it work locally I had to add AspCompat to the page so the first like looks like:
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="WebApplication1._Default" AspCompat="True" %>
Any help would be greatly appreciated.