Link to home
Start Free TrialLog in
Avatar of Victor  Charles
Victor CharlesFlag for United States of America

asked on

Help with opening LLL project hia web link

Hi,
Is is possible to run an app converted to DLL v u a a web link, not certain if i need include it in an ASP.net app or can it run directly from a folder.

Thanks,

Victor
Avatar of David Johnson, CD
David Johnson, CD
Flag of Canada image

you can't load a .dll via the internet. A .dll isn't an application it is just a collection of functions.
Avatar of Victor  Charles

ASKER

Is it possuble to access it from asp.net same way you  you do it with a Windows  application?
ASKER CERTIFIED SOLUTION
Avatar of Fernando Soto
Fernando Soto
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi Victor;

To your last post in the other thread, "I am able to run a DLL file from another another windoes  App by using it as a reference. I would like run the sane file using a web link, trying to find out the best approach.", as David stated you can not use a link to point to the dll and have it run one of its function. Can you not load it into your application at design time?
Hi,

I will create a web application using ASP.net and see if i can use sane approach used with the windows app. This would avoid  need to develop another  web application. How about web services? Not too familiar with web applications just trying to find out if i can avoid devloping another web application by somehow using the DLL file.
Why not just add the dll to the current Web app and use it like you do in a windows form app.
I will try this approach, thought there  might  a way to avoid using ASP.NET.
Thanks,
V.
If it is an Asp.Net app you will not avoid using ASP.NET.
Thank You.
Not a problem Victor, glad to help.
Looking into possible security  concerns with DLLs since  i would like to have the asp.net app installed on a web serve.
Thanks.