Hi,
I am working in VS2012.
I have a div in which i have image control and another div to show number with rounded shape. i am little struggleing how to show the rounded number on the right corner of the image control as shown in below picture.
I know how to create rounded shape using div and css. Here is my code:
<div>
<asp:Image ID="imgsample" ImageAlign="Middle" ImageUrl="sample.jpg"/>
<div class="customround">100</div>
</div>
<style>
.customround{width:56px;height:56px;border-radius:71px;font-size:20px;color:#fff;line-height:56px;text-align:center;background:#000}
</style>

the number on the round shape will be dynamic as i will be writing from code behind. my doubt is how do i show the rounded shape circle on the right corner of the image control. any hepl please. any sample code please