本文整理汇总了C#中IDownloadService.InsertDownload方法的典型用法代码示例。如果您正苦于以下问题:C# IDownloadService.InsertDownload方法的具体用法?C# IDownloadService.InsertDownload怎么用?C# IDownloadService.InsertDownload使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IDownloadService
的用法示例。
在下文中一共展示了IDownloadService.InsertDownload方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateSelectedAttributesXml
//.........这里部分代码省略.........
}
}
break;
case AttributeControlType.Checkboxes:
{
var cblAttributes = collection[controlId];
if (cblAttributes.HasValue())
{
foreach (var item in cblAttributes.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries))
{
int selectedAttributeId = int.Parse(item);
if (selectedAttributeId > 0)
selectedAttributes = productAttributeParser.AddProductAttribute(selectedAttributes, attribute, selectedAttributeId.ToString());
}
}
}
break;
case AttributeControlType.TextBox:
case AttributeControlType.MultilineTextbox:
{
var txtAttribute = collection[controlId];
if (txtAttribute.HasValue())
{
string enteredText = txtAttribute.Trim();
selectedAttributes = productAttributeParser.AddProductAttribute(selectedAttributes, attribute, enteredText);
}
}
break;
case AttributeControlType.Datepicker:
{
var date = collection[controlId + "_day"];
var month = collection[controlId + "_month"];
var year = collection[controlId + "_year"];
DateTime? selectedDate = null;
try
{
selectedDate = new DateTime(Int32.Parse(year), Int32.Parse(month), Int32.Parse(date));
}
catch { }
if (selectedDate.HasValue)
{
selectedAttributes = productAttributeParser.AddProductAttribute(selectedAttributes, attribute, selectedDate.Value.ToString("D"));
}
}
break;
case AttributeControlType.FileUpload:
if (request == null)
{
Guid downloadGuid;
Guid.TryParse(collection[controlId], out downloadGuid);
var download = downloadService.GetDownloadByGuid(downloadGuid);
if (download != null)
{
selectedAttributes = productAttributeParser.AddProductAttribute(selectedAttributes, attribute, download.DownloadGuid.ToString());
}
}
else
{
var httpPostedFile = request.Files[controlId];
if (httpPostedFile != null && httpPostedFile.FileName.HasValue())
{
int fileMaxSize = catalogSettings.FileUploadMaximumSizeBytes;
if (httpPostedFile.ContentLength > fileMaxSize)
{
warnings.Add(string.Format(localizationService.GetResource("ShoppingCart.MaximumUploadedFileSize"), (int)(fileMaxSize / 1024)));
}
else
{
//save an uploaded file
var download = new Download()
{
DownloadGuid = Guid.NewGuid(),
UseDownloadUrl = false,
DownloadUrl = "",
DownloadBinary = httpPostedFile.GetDownloadBits(),
ContentType = httpPostedFile.ContentType,
Filename = System.IO.Path.GetFileNameWithoutExtension(httpPostedFile.FileName),
Extension = System.IO.Path.GetExtension(httpPostedFile.FileName),
IsNew = true
};
downloadService.InsertDownload(download);
//save attribute
selectedAttributes = productAttributeParser.AddProductAttribute(selectedAttributes, attribute, download.DownloadGuid.ToString());
}
}
}
break;
default:
break;
}
}
return selectedAttributes;
}