|
|
posted on December 06, 2012 07:03
public string get_image(string product_ID)
{
string functionReturnValue = null;
HttpWebRequest req = default(HttpWebRequest);
req = WebRequest.Create("http://www.yoursite.com/Images/products/" + product_ID + "_thumb.jpg");
HttpWebResponse resp = default(HttpWebResponse);
try {
resp = req.GetResponse();
functionReturnValue = "<a href='http://www.yoursite.com/Images/products/" + product_ID.Trim() + ".jpg' target='_blank'><IMG border=0 src='http://www.yoursite.com/upl_data/products/" + product_ID.Trim() + "_thumb.jpg' /></a>";
} catch (Exception ex) {
functionReturnValue = "<IMG border=0 src='images/noimage.jpg' />";
}
return functionReturnValue;
//return functionReturnValue;
}
There are currently no comments, be the first to post one!