[Message Deleted]
-
[Message Deleted]
-
[Message Deleted]
-
string url = Server.MapPath("~/IDS/" + dr["RmtMLRAddressImg"].ToString()); image1.imageurl= url;
umerumerumer
-
string url = Server.MapPath("~/IDS/" + dr["RmtMLRAddressImg"].ToString()); image1.imageurl= url;
umerumerumer
what is coming on that page ? Try to check From View Source and check the image path on source file.
cheers, Abhijit
-
[Message Deleted]
It's Very Bad to delete Messages !!! X|
cheers, Abhijit
-
string url = Server.MapPath("~/IDS/" + dr["RmtMLRAddressImg"].ToString()); image1.imageurl= url;
umerumerumer
mr_muskurahat wrote:
string url = Server.MapPath("~/IDS/" + dr["RmtMLRAddressImg"].ToString()); image1.imageurl= url;
Try to use this: string url = "~/IDS/" + dr["RmtMLRAddressImg"].ToString(); image1.imageurl = url; Hope this helps.
-
string url = Server.MapPath("~/IDS/" + dr["RmtMLRAddressImg"].ToString()); image1.imageurl= url;
umerumerumer
mr_muskurahat wrote:
string url = Server.MapPath("~/IDS/" + dr["RmtMLRAddressImg"].ToString());
Will return you string like D:\abc\IDS\123.jpg This is not a valid path for web app. Try Using string url = "IDS/" + dr["RmtMLRAddressImg"].ToString(); image1.imageurl= url; It will assign the relative path to image.