Would it be possible to set a div image over another div image in asp.net?
For example: after having an image A, the user chooses an image B with location 10, 10 then the image B will be placed at location 10, 10 on the image A (not merging).
Or it is required to use jQuery?
Thanks in advance.
I assume that you are running Web Forms.
You can accomplish this by wrapping the images in a position relative div and then position them absolute, you can do this from the code behind.
Here is the HTML + CSS to demonstrate this: http://jsfiddle.net/GuafM/
The serverside code to add the dot would look something like this:
If you want the user to drag and drop (or similar complex client side behaviour) a image on top of another I would probably recommend that you use jQuery.