i want to show my image on the image source after save the image in html....how to assign image to image source in asp.net
Set the IMG tag runat = "server"
<img runat = "server" id = "Image1" />
Then in code you can set SRC as following
Image1.Src = "~/images/myPic.jpg";
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.