Posted on: 9/5/2014 9:35:09 AM | Views : 447

Hi to All,
I could uploaded images from my computer to ftp server, 
now I want to display those images in web pages from ftp server, I googled this article and found the solutions, but none of them were not the exact result which I had searched.
one of the best result was this, but I think in this article the image is in the database as context... Would you please help me to change it as just display an image from Ftp Server?
I think these lines need changes:
public void ProcessRequest (HttpContext context)
&&
FtpWebRequest displayRequest = (FtpWebRequest)WebRequest.Create(new Uri(FileSaveUri + context.Request.QueryString["memberpic"]));
&&
<asp:image runat="server" width="200" height="200" imageurl="<%# "~/GetImage.ashx?memberpic=" + Eval("member_pic") %>" id="memberpic" />

Go to the complete details ...