Update tags to not use periods
This commit is contained in:
@@ -4,7 +4,7 @@ title: "Replacing newline characters in VB.NET strings"
|
||||
date: 2012-06-12
|
||||
description: "Replacing newline characters in VB.NET strings"
|
||||
categories: [programming]
|
||||
tags: [vb.net]
|
||||
tags: [vb-net]
|
||||
---
|
||||
I’m not very familiar (which I am actually very happy for!) with VB.NET and so I had a hard time figuring out how to trim newline characters from a string in a Reporting Services report I was working on.
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ title: "Converting a Hexadecimal Color to a System.Drawing.Color Object"
|
||||
date: 2009-09-24
|
||||
description: "Converting a Hexadecimal Color to a System.Drawing.Color Object"
|
||||
categories: [programming]
|
||||
tags: [.net]
|
||||
tags:[dotnet]
|
||||
---
|
||||
I try to avoid setting styles in my code as much as possible. However, I ran across a case using a DevExpress PageControl control where there was no possible way to set a certain border by using CSS. This is because DevExpress wisely (read sarcasm) uses “border-color: #whatever !important” in the element’s style attribute. So, there is no way to override that style except by setting it on the control in code (or your aspx page).
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ title: "Cookie.Expires from ASP.NET Request Object Always DateTime.MinValue"
|
||||
date: 2010-10-12
|
||||
description: "Cookie.Expires from ASP.NET Request Object Always DateTime.MinValue"
|
||||
categories: [programming]
|
||||
tags: [.net,asp.net]
|
||||
tags:[dotnet,asp-net]
|
||||
---
|
||||
I’ve been working on a problem today involving cookies with one of our web applications. The cookie is keeping track of a user’s authenticated session and it’s timing people out too soon. So, I was checking the expiration time of the cookie coming in from the browser and it was returning 1/1/0001 12:00AM every time. I thought this might be the source of my problem, but resetting the cookie and the expiration time did not help the next round-trip to the server. The cookie still read the DateTime.MinValue time.
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ title: "Group List Into Sub-lists by Index"
|
||||
date: 2012-07-27
|
||||
description: "Group List Into Sub-lists by Index"
|
||||
categories: [programming]
|
||||
tags: [.net]
|
||||
tags:[dotnet]
|
||||
---
|
||||
## Problem
|
||||
Everyone once-in-a-while I need to take a flat list (or array, or whatever) of items and divide it up into chunks. It doesn’t have to be in any real order, necessarily, it just has to be in groups of two, three or four or however many items. Most recently, I needed this to divide up a list of blog items into chunks of four to display in sets of “pages” that a user would page through with Javascript.
|
||||
|
||||
@@ -4,7 +4,7 @@ title: "Custom Error Pages with Sitefinity"
|
||||
date: 2012-10-12
|
||||
description: "Custom Error Pages with Sitefinity"
|
||||
categories: [programming]
|
||||
tags: [sitefinity,.net]
|
||||
tags: [sitefinity,dotnet]
|
||||
---
|
||||
I had a considerably hard time today getting just a simple 404 error page (custom) to show up in all cases for a Sitefinity installation. It probably has nothing to do with Sitefinity and a lot more to do with my lack of experience doing this simple task. But, anyhow, here are my findings.
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ title: "Converting an Interface Expression to a Concrete Expression"
|
||||
date: 2013-01-23
|
||||
description: "Converting an Interface Expression to a Concrete Expression"
|
||||
categories: [programming]
|
||||
tags: [.net]
|
||||
tags:[dotnet]
|
||||
---
|
||||
I had a case recently where I needed to convert a LINQ expression of the type of an interface and I needed to convert it to be based on a concrete implementation of that interface. I came up with the following solution, using an ExpressionVisitor and a simple helper method.
|
||||
|
||||
|
||||
@@ -4,6 +4,6 @@ title: "ASP.NET MVC 3.0 Redirect to Account/Login with Windows Authentication"
|
||||
date: 2013-04-23
|
||||
description: "ASP.NET MVC 3.0 Redirect to Account/Login with Windows Authentication"
|
||||
categories: [programming]
|
||||
tags: [.net,asp.net,mvc]
|
||||
tags:[dotnet,asp-net,mvc]
|
||||
---
|
||||
[ASP.NET MVC 3 Windows Authentication problem – redirects to Account/Login](http://www.benramey.com/2013/04/23/asp-net-mvc-3-0-redirect-to-accountlogin-with-windows-authentication/#)
|
||||
|
||||
@@ -4,7 +4,7 @@ title: "NServiceBus with EntityFramework Persisters"
|
||||
date: 2014-03-07
|
||||
description: "NServiceBus with EntityFramework Persisters"
|
||||
categories: [programming]
|
||||
tags: [.net,nservicebus]
|
||||
tags:[dotnet,nservicebus]
|
||||
---
|
||||
|
||||
## Update 1/13/2016
|
||||
|
||||
@@ -4,7 +4,7 @@ title: "Active Directory Authentication in ASP.NET MVC 5 with Forms Authenticat
|
||||
date: 2014-10-20 9:03:00
|
||||
description: "How to integrate MVC authorization attributes with Active Directory."
|
||||
categories: [programming]
|
||||
tags: [mvc,asp.net,active-directory]
|
||||
tags: [mvc,asp-net,active-directory]
|
||||
---
|
||||
|
||||
I know that blog post title is sure a mouth-full, but it describes the whole problem I was trying to solve in a recent project.
|
||||
|
||||
@@ -4,7 +4,7 @@ title: "Permutations with Iterators in C#"
|
||||
date: 2015-09-03 12:27:00
|
||||
description: "Link to great code for generator permutations of objects with iterators"
|
||||
categories: [programming]
|
||||
tags: [.net]
|
||||
tags:[dotnet]
|
||||
---
|
||||
|
||||
I recently ran across a need to generate all permutations of an array of objects
|
||||
|
||||
@@ -4,7 +4,7 @@ title: "Working with x.509 Certificates in .NET"
|
||||
date: 2015-12-02 16:35:00
|
||||
description: "Link to helpful article on working with certificates in Windows and .NET"
|
||||
categories: [programming]
|
||||
tags: [.net,certificates]
|
||||
tags:[dotnet,certificates]
|
||||
---
|
||||
|
||||
I found a lot of very helpful details about certificate storage and usage in Windows and
|
||||
|
||||
@@ -4,7 +4,7 @@ title: "You Can't Subscribe to IEvent with NServiceBus"
|
||||
date: 2016-02-25 15:56:00
|
||||
description: "The problems with trying to subscribe to IEvent with NServiceBus"
|
||||
categories: [programming]
|
||||
tags: [.net,nservicebus]
|
||||
tags:[dotnet,nservicebus]
|
||||
---
|
||||
|
||||
The reason you might want to subscribe to `IEvent` is pretty straightforward. I
|
||||
|
||||
@@ -4,7 +4,7 @@ title: "OWIN Integration Testing with OAuth Bearer Tokens"
|
||||
date: 2016-04-11 13:34:00
|
||||
description: "How to generate an OAuth bearer token to use with OWIN integration tests."
|
||||
categories: [programming]
|
||||
tags: [owin,.net]
|
||||
tags: [owin,dotnet]
|
||||
---
|
||||
|
||||
## Situation
|
||||
|
||||
@@ -4,7 +4,7 @@ title: "Castle.Windsor TypedFactoryFacility and Unexpected Property Injection B
|
||||
date: 2016-08-24 12:37:00
|
||||
description: "Interesting (and unexpected) behavior of Windsor's property injection when using TypedFactoryFacility."
|
||||
categories: [programming]
|
||||
tags: [.net,castle-windsor]
|
||||
tags:[dotnet,castle-windsor]
|
||||
---
|
||||
|
||||
I finally got to the bottom of an issue today that came down to the way Castle.Windsor
|
||||
|
||||
@@ -4,7 +4,7 @@ title: "Iterating All EPiServer Catalog MetaObjects"
|
||||
date: 2020-05-27
|
||||
description: "C# iterators to walk through all EPiServer catalog node and entry content meta objects."
|
||||
categories: [programming]
|
||||
tags: [episerver,csharp,.net]
|
||||
tags: [episerver,csharp,dotnet]
|
||||
---
|
||||
|
||||
If you're maintaining an e-commerce-enabled site in EPiServer and you're using the built-in catalog, then
|
||||
|
||||
Reference in New Issue
Block a user