I'm able to upload images in the Media section in the admin panel. My question is: how do I use an updated image in a Partial View? I'm not asking about doing it programmatically. I have a very simple Partial View - code below:
<div>
<p style="text-align:center">Heading here</p>
<img/>
</div>
Please note that is all the code of the Partial View.
After uploading, I just want to add an image tag. The image name and ID will be available. Is there a way I can configure a wizard to select the image ?
If I have to do it manually by writing HTML, can you please share a sample of the required HTML image tag?