I was trying to load an image on a \[code\]<asp:image>\[/code\] control.The thing is that the paths of the images are saved in the database, and some of the image names contain white spaces. For example "Image name number 2.jpg". When I'm setting the ImageUrl attribute for the asp control, it can be assigned without any trouble, but when loaded in html the url is displayed as seen below:\[code\]"C:\..\..\Image%20name%20number%202.jpg" \[/code\]Because of those "%20" it can't find the picture so it won't show.What can I do to solve this?