User1520731567 posted
Hi abdulraqeeb93,
like this
article:
string remoteImageUrl = "http://xxx.xxx.com:1147/images/test.jpg";
WebClient webClient = new WebClient();
webClient.DownloadFile(remoteImageUrl, Server.MapPath("~/images/") + "2.jpg");
<img src="@Url.Content("~/images/2.jpg")" />
I think you could use WebClient to get url of image in another web server and download in local.
And then show the image in local.
Best Regards.
Yuki Tao