Click here to Skip to main content
15,892,839 members

Comments by patelKhyati (Top 20 by date)

patelKhyati 16-Apr-12 6:31am View    
also if you want, can check this below link ,
view-source:http://raphaeljs.com/image-rotation.html

it will also do the thing if this image rotation can be automatically start on page load (not button click) and stop on mouseover (not button click).
thanks
patelKhyati 7-Mar-12 7:20am View    
i dont know how to do that as i am a fresher.
patelKhyati 7-Mar-12 6:19am View    
have tried this, its not working i dont know why
patelKhyati 7-Mar-12 5:40am View    
i can use "~/Yourpath/" to store the image path in the database to display the image.

but which path to use to store the image on the folder profimgs on my server? we have to save the image in the folder first and than save only its path to database.
and to store the image on the server folder, i have to use Server.MapPath()
patelKhyati 25-Aug-11 6:53am View    
i have modified ur code a bit. it worked fine. but just last item of datalist is not updating. if u cn suggest anything. my code is as follow.

protected void DataList1_ItemDataBound(object sender, DataListItemEventArgs e)
{
int i;
////foreach (DataListItem di in DataList1.Items)
for (i=0; i < DataList1.Items.Count; i++)
{
if (((DataList)(DataList1.Items[i].FindControl("DataList3"))).Items.Count <= 0)
{
((System.Web.UI.WebControls.Image)(DataList1.Items[i].FindControl("Image40"))).Visible = true;

}
else
{
((System.Web.UI.WebControls.Image)(DataList1.Items[i].FindControl("Image40"))).Visible = false;
}
}
}