i'm building a class library project using c# to scale/resize images,the project only has one class with only one public static function with 2 parameters now the code is working fine and perfect so its not the issue here. now, how can i execute this function directly from url? ex:my project called: myDLL.dll how to do this:
img src="/myDLL.dll?image=/images/pic1.png&width=200"
so this execute my function and pass width and image as parameters
i know how to add iis handler to execute DLL from browser..but i dont know how to make this :/myDLL.dll?image=/images/pic1.png&width=200 run my function
plz help