フォルダに画像があります。ImageUrl
背後のコードから設定しようとすると、画像ではなく半分に壊れたように見える小さなシンボルが表示されます。ImageUrl
Image プロパティでを設定すると、機能します。私は何を間違っていますか?
var imagepath = Server.MapPath(@"~/images/candidates/small/image.jpg");
System.Drawing.Image image = System.Drawing.Image.FromFile(imagepath);
int ActualWidth = image.Width;
int ActualHeight = image.Height;
candImage.ImageUrl = imagepath;
candImage.Height = ActualHeight;