I got stuck into some weird situation related to path for generic handler (.ashx).
Ajax post is being made to handler. (Note: i have not applied / before Handler)
ajaxCallUrl: "Handler/RequestHandler.ashx"
After hosting on virtual directory in iis, url need to get changed like
ajaxCallUrl: "App/Handler/RequestHandler.ashx"
I trying using VirtualPathUtility.ToAbsolute("~/Handler/RequestHandler.ashx")
Also i have seeing the solution here (related to mine) showing getting url from Action Link but how in case of Handler?
Pls suggest any solution