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
DELETE UserProfile WHERE UserID IN (SELECT UserID FROM Users WHERE UserID NOT IN (SELECT UserID FROM UserPortals) AND IsSuperUser = 0) | |
DELETE aspnet_Membership WHERE UserId IN (SELECT UserId FROM aspnet_Users WHERE UserName IN (SELECT UserName FROM Users WHERE UserID NOT IN (SELECT UserID FROM UserPortals) AND IsSuperUser = 0)) | |
DELETE aspnet_Profile WHERE UserId IN (SELECT UserId FROM aspnet_Users WHERE UserName IN (SELECT UserName FROM Users WHERE UserID NOT IN (SELECT UserID FROM UserPortals) AND IsSuperUser = 0)) | |
DELETE aspnet_Users WHERE UserName IN (SELECT UserName FROM Users WHERE UserID NOT IN (SELECT UserID FROM UserPortals) AND IsSuperUser = 0) DELETE Users WHERE UserID NOT IN (SELECT UserID FROM UserPortals) AND IsSuperUser = 0 |
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
Transforming Audio | |
20121111-Ranvestel-TwoShallBecomeOne_3.MP3 | |
[oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo] | |
Input File : 'C:\Users\bdukes\Dropbox\Music\Podcasts\20121111-Ranvestel-TwoShallBecomeOne_3.MP3' | |
Channels : 2 | |
Sample Rate : 48000 | |
Precision : 16-bit | |
Duration : 00:56:26.16 = 162535680 samples ~ 253962 CDDA sectors | |
File Size : 24.1M |
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
var editor = $find($('.RadEditor').first().attr('id')); | |
editor.attachEventHandler('onkeyup', function (event) { | |
console.log(editor.get_html()); | |
}); |
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
<%@ Control Language="C#" AutoEventWireup="true" Inherits="DotNetNuke.UI.Skins.Skin" %> | |
<%@ Register TagPrefix="dnn" TagName="Meta" Src="~/Admin/Skins/Meta.ascx" %> | |
<script runat="server"> | |
private void Page_PreRender(object sender, EventArgs e) { | |
var metaRobots = Page.FindControl("MetaRobots") as HtmlMeta; | |
if (metaRobots != null) { | |
metaRobots.Visible = false; | |
} | |
} |
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
/* | |
* Deprecated DNN CSS class names will remain available for some time | |
* before being permanently removed. Removal will occur according to | |
* the following process: | |
* | |
* 1. Removal will only occur with a major (x.y) release, never | |
* with a maintenance (x.y.z) release. | |
* 2. Removal will not occur less than six months after the release | |
* when it was deprecated. | |
* 3. Removal will not occur until after deprecation has been noted |
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
<div class="rotate-wrap"> | |
<engage:list> | |
<div class="image" style="background:url('<engage:Literal Text='%#ImageUrl%' />');height:250px;width:100px;"></div> | |
</engage:list> | |
</div> |
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
.blog .main { | |
float: left; | |
width: 61.111111111111%; /* 550px / 900px */ | |
} | |
.blog .adside { | |
float: right; | |
width: 36.7777778%; /* 331px / 900px */ | |
} |
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
<%@ 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 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
OutputCachingProvider.Instance(Host.PageCachingMethod).PurgeCache(portalId); |
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
<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> |