Asp. Net uses the Server Control Image/ImageButton to display local images,
The Image/ImageButton Server Control displays a local Image. Here, I am doing this: the database stores the relative address of the image, reads the address in the database, and loads the display image with controls.
Steps:
A. Add A server control. The following uses the Image control as an example.
B. The path in the database is very important. The format is written like this :~ /Image/1.jpg. I wrote :~ \ Image \ 1.jpg. the image cannot be loaded. After '\' is changed, the image can be loaded. Image is a folder that stores images in the main directory of the project.
C. Add code. Use the image URL attribute of the image to add the image path:
// Avatar Image_portrait.ImageUrl = ds. Tables [ZER]. Rows [ZER] [SIX]. ToString ();
D. Result
Summary
The above section describes how to use the Server Control Image/ImageButton in asp.net to display local images. If you have any questions, please leave a message, the editor will reply to you in a timely manner. Thank you very much for your support for the help House website!