Hi.. In my domain hosting site PhotoDisplay.ashx is not working... and while displaying photos we have all references to PhotoDisplay.ashx as
<asp:LinkButton ID="AdPhotoImageButton" runat="Server" CommandName="ShowFullSize"
CommandArgument='<%# Eval("Id") %>' CausesValidation="False"><img alt="Enlarge Photo" src='<%# Eval("Id", "PhotoDisplay.ashx?photoid={0}&size=medium") %>' style="border:0;" /></asp:LinkButton></p>
So photos are not getting displayed...
And when i try to execute it separately it displays me entire code.. Means its not recognising it as asp.net file and not doing processing..
http://www.nestforme.com/PhotoDisplay.ashx
Can anyone tell me how i can convert this http://www.nestforme.com/PhotoDisplay.ashx to something aspx so that i can make this work?