コード例 #1
0
ファイル: Upload.aspx.cs プロジェクト: holmes2136/ShopCart
    private void SaveSecondaryNoProduct(ProductImageFile imageFile)
    {
        imageFile.SaveSecondary();

        if (!String.IsNullOrEmpty(ProductImageData.SecondaryImagePath) &&
            String.Compare(imageFile.SecondaryFilePath, ProductImageData.SecondaryImagePath, true) != 0)
        {
            DeleteFile(ProductImageData.SecondaryImagePath);
        }

        ProductImageData.SecondaryImagePath = imageFile.SecondaryFilePath;
    }
コード例 #2
0
ファイル: ImageList.ascx.cs プロジェクト: holmes2136/ShopCart
    private void SaveSecondary(Product product, ProductImageFile imageFile)
    {
        imageFile.SaveSecondary();

        string secondaryImage = product.ImageSecondary;

        if (!String.IsNullOrEmpty(secondaryImage) &&
            String.Compare(imageFile.SecondaryFilePath, secondaryImage, true) != 0)
        {
            DeleteFile(secondaryImage);
        }
        product.ImageSecondary       = imageFile.SecondaryFilePath;
        uxSecondaryImageHidden.Value = product.ImageSecondary;
    }