protected kawitacyjny Swatches_ItemCommand (Przedmiot nadawca, DataListCommandEventArgs e)
{
jeżeli (e.CommandName == "Wybiórka")
{
smyczkowy część = e.CommandArgument.ToString ();
foreach (DataListItem parentItem w thumbRotatoralt.Items)
{
Przylepiać etykietkę lblPart = (Etykietka) parentItem.FindControl ("lblPart");
Przylepiać etykietkę lblproductcode = (Etykietka) parentItem.FindControl ("lblproductcode");
jeżeli (lblPart.Text == część)
{
Wizerunek img1 = (Wizerunek) parentItem.FindControl ("img1");
Przylepiać etykietkę lblPrice = (Etykietka) parentItem.FindControl ("lblPrice");
DataTable DTColourFetch = nowy DataTable ();
DTColourFetch = LoadColourInfo (część, ColourCode, "GetAllColorSwatchesWithMin");
jeżeli (DTColourFetch.Rows.Count > (0))
{
smyczkowy Image1 = DTColourFetch.Rows [(0)] ["Imagename"] .ToString ();
lblPrice.Text = FormatePrice (cena, presaleprice);
img1.ImageUrl = FormatImageURL (Image1);
smyczkowy pnames = lblname. Tekst;
smyczkowy ProductName = pnames + ""+ getfirstcolourname;
lblname. Tekst = ProductName.Trim ();
}
}
}
}
}
|