Click here to Skip to main content
15,888,984 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi i need help for making jewellery shooping site.
Suppose i have one image which is saved in the database.only one photo of customer. and other 3 image of neckles,ear ring and nose ring.i will click on the neckles and the neckles will move to customer neck.Is it possible through jquery or C#,asp.net? ?only 3 image.by clicking only it will move to customer photo neck or ear ring.forget Dynamically.only 3 image.main customer is having 1 image and 3 jewellery items.
Posted

You need to use Adobe Air and other Adobe and Jquery, JavaScript etc.
 
Share this answer
 
You can do this on serverside:
- First of all you have to find your placeholder (div, form...)
- You can make a new LiteralControl, for example <img> tag.
- Now you can add to your form the image.

You can add dynamically LiteralControl to your website as the follows.

C#
Control myPlaceHolder = FindControl("form1");
 
String imageLink = "picture.jpg";
 
String yourPicture = "<img src=\"" + imagelink + "\" alt=\"pictureAlt\" />";
 
myPlaceHolder.Controls.Add(new LiteralControl(yourPicture));
 
Share this answer
 
v3
Comments
Member 10279150 17-Sep-13 8:07am    
i tried to do but image is moving or overlaping on another image.just normal image showing.
norbitrial 17-Sep-13 8:22am    
Try to make a div around the img tag and resize it or resize the image.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900