This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private string ParseExcelFileAndGenerateHtmlTable(ExcelPackage xlPackage) | |
{ | |
string html = ""; | |
int workBooks = 0; | |
using (xlPackage) | |
{ | |
var workbook = xlPackage.Workbook; | |
if (workbook != null) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using EPiServer.Core; | |
using EPiServer.Validation; | |
using EPiServer; | |
using AlloyDemoMVC.Models.Media; | |
namespace AlloyDemoMVC.Business | |
{ | |
public class ImagePropertyValidator : IValidate<ContentData> | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
using EPiServer.PlugIn; | |
using EPiServer.Scheduler; | |
using EPiServer.Licensing; | |
using System.Security.Cryptography; | |
using EPiServer.Framework.Configuration; | |
using EPiServer.Licensing.RestrictionTypes; | |
using System.Net.Mail; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Page Language="C#" AutoEventWireup="false" CodeFile="Quality.aspx.cs" Inherits="EPiServer.Templates.Alloy.Quality" %> | |
<%@ Import Namespace="Castle.MicroKernel.Registration" %> | |
<%@ Import Namespace="EPiServer.ClientScript.Events" %> | |
<%@ Import Namespace="System.Web.Management" %> | |
<!doctype html> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using EPiServer; | |
using EPiServer.Core; | |
using EPiServer.Editor; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Web; | |
using System.Web.UI.WebControls; |
NewerOlder