Customize the Rich Text Editor in Sitecore
We ran into some issues at work with sitecore. It seems that by default the Rich Text Editor that Sitecore uses, Telerik’s RadEditor, will automatically convert... »
We ran into some issues at work with sitecore. It seems that by default the Rich Text Editor that Sitecore uses, Telerik’s RadEditor, will automatically convert... »
This is the fix for the dotnetopenauth.aspnet module not working on an amazon ec2 instance that was published out using beanstalk. The web deploy folder +... »
You can use <%# Container.DisplayIndex %> to get your position in the current list. You can use Items.Count on the Control to get the total Item... »
Having jumped back and forth between Coderwall and the QuietThyme blog, I’ve found that sometimes the content I want to talk about just doesn’t fit in.... »
What I did So here are the steps that I took in order to get everything working. Quite a few steps but I wanted it detailed... »
I’m posting this blog mostly to remind myself how to fix this if ever I run into it again, but if anyone else benefits from it,... »
http://blogs.technet.com/b/server_core/archive/2008/01/14/configuring-the-firewall-for-remote-management-of-a-workgroup-server-core-installation.aspx Not every MMC snap-in has a firewall group, here are those that do: MMC Snap-inRule GroupEvent ViewerRemote Event Log ManagementServicesRemote Service ManagementShared FoldersFile and Printer... »
Task Schedule works great in WHS 2011 (free an simple) Server Manager (near start menu) Drill down to, Configuration, Task Scheduler click Create Task. (not the... »
http://support.microsoft.com/kb/251192 How to create a service from an exe on server 2008 sc create CustomUTorrent binPath= "D:\uTorrent\uTorrent.exe" start= boot start= auto error= ignore obj= <Domain\Username> password=... »
Best instructions for setting up Hyper V Server https://technet.microsoft.com/en-us/library/ee256062%28WS.10%29.aspx »
Run nvspscrub.js /P to clear all Virtual Networks https://social.technet.microsoft.com/Forums/en-US/winserverhyperv/thread/708aef60-05ad-40ed-af70-5ddcaf2a7a36 https://social.technet.microsoft.com/Forums/en/winserverhyperv/thread/7f92804c-0489-48b6-92da-6cf03902406d https://social.technet.microsoft.com/Forums/en-US/winserverhyperv/thread/e6eb2454-084c-4754-9075-6f22ca717f2b/ »
How to inject network drivers into HyperV Server when you see the message “No active network adapters found” Download device driver Change Directory to driver location... »
document write is an antipattern, use: function elemTest() { var newDiv = document.createElement("div"); newDiv.innerHTML = "<h1>Hi there!</h1>"; document.body.appendChild(newDiv); }; »
https://addyosmani.com/resources/essentialjsdesignpatterns/book/#revealingmodulepatternjavascript https://addyosmani.com/resources/essentialjsdesignpatterns/book/#revealingmodulepatternjavascript What is a Pattern? ‘Pattern’-ity Testing, Proto-Patterns & The Rule Of Three The Structure Of A Design Pattern Writing Design Patterns Anti-Patterns Categories Of... »
Wrap your Eval call: Markup: <asp:LinkButton id=”whatever” runat=”server” Visible=’’<%# ShowHideLink(Eval(“Storage”)) %> Code-Behind: protected bool ShowHideLink(object obj) { bool result = false; //cast obj to whatever datatype... »