I created an ashx file that returns a dynamic image url.
I can simply do something like:
<asp:Image ImageUrl='<%# "Handler.ashx?id=4" %>
but i need to do this in the background code.
somethin like: (this code is wrong)
img.imageUrl = Handler.ashx?id=4;
how can i send a request to an ashx file?
I can simply do something like:
<asp:Image ImageUrl='<%# "Handler.ashx?id=4" %>
but i need to do this in the background code.
somethin like: (this code is wrong)
img.imageUrl = Handler.ashx?id=4;
how can i send a request to an ashx file?