JohnnBlade
My Sites
-
Recent Posts
Archives
- April 2016
- March 2015
- January 2015
- December 2014
- November 2014
- September 2014
- August 2014
- July 2014
- May 2013
- July 2012
- June 2012
- May 2012
- April 2012
- February 2012
- December 2011
- November 2011
- September 2011
- April 2011
- March 2011
- January 2011
- December 2010
- November 2010
- October 2010
- July 2010
- September 2009
- June 2009
- May 2009
- April 2009
- June 2008
- May 2008
- April 2008
Categories
- .NET Ajax
- Ajax .NET
- Api Controllers 2.0
- BIO Coding – MEA + Neurons
- C#
- CSS
- DotNetNuke
- Drones
- Experiments and Tests
- Geen categorie
- Grow Cannabis / Weed with LED Project
- JQuery
- Mindscape Lightspeed
- MSN Live Messenger
- MVC 3.0
- Sharepoint 2007
- Source Control
- SQL Injections
- SQL Queries
- Tools
- Umbraco
- Web services – Service references
- Windows
- WPF & DevExpress
Meta
Views
- 70,113 views
Top Categories
.NET Ajax Ajax .NET Api Controllers 2.0 BIO Coding - MEA + Neurons C# CSS DotNetNuke Drones Experiments and Tests Geen categorie Grow Cannabis / Weed with LED Project JQuery Mindscape Lightspeed MSN Live Messenger MVC 3.0 Sharepoint 2007 Source Control SQL Injections SQL Queries Tools Umbraco Web services - Service references Windows WPF & DevExpress
Category Archives: Umbraco
Umbraco Excel Macro that injects the Excell content into the RTE so it can be edited
Some code to to create an umbraco macro that takes an id of an excell sheet stored in the media lib and shows it in the RTE, but normally you can edit the content of an excel sheet in an … Continue reading
Posted in Umbraco
Leave a comment
Display image from umbraco 7 media picker in web page
Here is how to show an image from an umbraco 7 media picker, and show it on the web page <img src=”@Umbraco.Media(CurrentPage.myImage).Url” alt=”@CurrentPage.title” />
URL Rewriting in umbraco for search page and paging
I have a search page inc paging with the follwing url /search/?page=1&searchquery=A to rewrite this url to a more friendly url just open the file your_umbraco_website\config\UrlRewriting.config and add the following lines <add name=”Search” virtualUrl=”^~/search/(.[0-9]*)/(.*)” rewriteUrlParameter=”ExcludeFromClientQueryString” destinationUrl=”~/search/?page=$1&searchQuery=$2″ ignoreCase=”true” /> also … Continue reading
Umbraco contour form summary – Custom field type
Here is a small code to create a summary page in the 2e step of a umbraco contour form this code is for Umbraco 7+ with Contour 3 First create the contour form and call it forexample “ContactForm”, add 2 … Continue reading
Posted in Umbraco
Tagged contour 3, contour form, contour summary page, custom field type, umbraco, umbraco 7, visual studio
Leave a comment