I am working with an intranet site written in ASP.NET and must have access to the DLL installed on the user machine. I can make it work if I host the site locally, but when I try to access it from another computer, it does not work. I understand that this can be a dangerous tool to use, but if you have a valid business goal for this, is that possible?
I looked around and you can use JavaScript for this, but I'm wondering if there is anything else.
To make it work locally, I had to add AspCompat to the page so that the first would look like this:
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="WebApplication1._Default" AspCompat="True" %>
Any help would be greatly appreciated.
source
share