This file contains 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
<div class="folio-template"> | |
<div class="rotate-wrap"> | |
<engage:list> | |
<div class="engage-content"> | |
<engage:img src="%#ImageUrl%" alt="%#Title%"/> | |
<div class="footer"> | |
<div class="title"><engage:literal text="%#Title%"/></div> | |
<div class="desc"><engage:literal text="%#Content%"/></div> | |
</div> | |
</div> |
This file contains 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
<runtime> | |
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | |
<probing privatePath="bin;bin\HttpModules;bin\Providers;bin\Modules;bin\Support;" /> | |
<dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1"> | |
<assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" /> | |
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" /> | |
</dependentAssembly> | |
<dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1"> | |
<assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35" /> | |
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" /> |
This file contains 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.Collections; | |
using System.Collections.Generic; | |
using System.Data; | |
using System.Diagnostics.CodeAnalysis; | |
/// <summary> | |
/// Enumerates over an <see cref="IDataReader"/> instance, moving to the next record upon each enumeration. | |
/// </summary> | |
/// <remarks> |
This file contains 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
[svn-remote "svn"] | |
url = https://svn.example.com/svn/your-project | |
fetch = :refs/remotes/git-svn |
This file contains 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
[tfs-remote "default"] | |
url = http://tfs.example.com:8080/tfs | |
repository = $/Project/Sub Project/Etc/Etc | |
fetch = refs/remotes/default/master |
This file contains 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
<runtime> | |
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | |
<probing privatePath="bin;bin\HttpModules;bin\Providers;bin\Modules;bin\Support;" /> | |
<dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1"> | |
<assemblyIdentity name="AjaxControlToolkit" publicKeyToken="28f01b0e84b6d53e" /> | |
<bindingRedirect oldVersion="0.0.0.0-99.99.99.99" newVersion="4.1.50401.0" /> | |
</dependentAssembly> | |
</assemblyBinding> | |
</runtime> |
This file contains 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
OutputCachingProvider.Instance(Host.PageCachingMethod).PurgeCache(portalId); |
This file contains 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
<%@ Control Language="C#" AutoEventWireup="false" Inherits="DotNetNuke.UI.Skins.Skin" %> | |
<%@ Import Namespace="DotNetNuke.Services.ClientCapability" %> | |
<div class="<%= ClientCapabilityProvider.CurrentClientCapability.IsTouchScreen ? "touch-please" : "no-touching" %>"> | |
<div id="ContentPane" runat="server"></div> | |
</div> |
This file contains 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
.blog .main { | |
float: left; | |
width: 61.111111111111%; /* 550px / 900px */ | |
} | |
.blog .adside { | |
float: right; | |
width: 36.7777778%; /* 331px / 900px */ | |
} |
This file contains 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
<div class="rotate-wrap"> | |
<engage:list> | |
<div class="image" style="background:url('<engage:Literal Text='%#ImageUrl%' />');height:250px;width:100px;"></div> | |
</engage:list> | |
</div> |
OlderNewer