Posts

Showing posts from October, 2017

Convert an SDF file to a MDF - File useful for Umbraco 7

How to convert a SDF Compact Database file to a full blown SQL Server MDF file. PART ONE (change the SDF file to MDF file): a) Install SQL Server Compact Toolbox runtime b) Start SQL Server Compact Toolbox runtime c) Select Add and Browse to the SDF file that you want to convert d) Select Sctipt Database Scheme and Data (this will produce a script) PART TWO (import the database in to SQL Server Management Studio) a) In SQL Server Management Studio create a Blank Database b) Right Click on the new database and select New Query c) Paste in the script and press execute: this will create all the Umbraco tables. Now you just need to update your umbraco config file to point to the new database.

Umbraco 7 Redirect to Another Node - Redirect to Parent Node

Umbraco 7 Redirect to Another Node - Redirect to Parent Node Response.Redirect(@CurrentPage.Parent().Url);

Umbraco 7 Tag and Sorting Tags in to Alphabetical Order Using a Dictionary

Umbraco 7 Tag and Sorting Tags in to Alphabetical Order Using a Dictionary: <ul> @{     Dictionary<string, int> tagsList =             new Dictionary<string, int>(); }  @foreach (var c in CurrentPage.Children())     {         if(c.HasValue("tags"))         {                    foreach (var item in c.GetPropertyValue<string[]>("tags"))            {                 if (!tagsList.ContainsKey(item))                 {                               tagsList.Add("" + item, 1);                     <!--<p>@item</p>-->                 }            }                   }         }     @{      var ordered = tagsList.OrderBy(x => x.Key);                                foreach(var i in ordered)                 {                  <li class="filterLink"><a href="@i.Key">@i.Key</a></li>                 }                 <!--<li class="filterLink