Showing Posts for C#

Fix issue with ASP.NET MVC Razor page intellisense

Michael Roma on Jul 2, 2015

This post shows how to fix an issue with ASP.NET MVC Razor pages where the syntax highlight does not work and intellisense doesn't work.

  • ASP.NET
  • C#

ASP.NET C# Web.Config helper class

Michael Roma on Apr 5, 2014

The following is a C# helper class that reads App Settings in your ASP.NET Web.config file

  • ASP.NET
  • C#

Automatically push data from a Kentico form to SalesForce using a Web to Lead form

Michael Roma on Apr 5, 2014

This post shows how to have data from a Kentico form builder pushed to SalesForce automatically using the Web-To-Lead functionality.

  • Kentico
  • ASP.NET
  • C#

Kentico CMS Mapper functions using Reflection in C# .NET

Michael Roma on Oct 17, 2013

The following post shows functionality on mapping a Kentico CMS TreeNode object to a strong type .NET model class. These functions use reflection to map a property in the class to a Kentico document type field.

  • Kentico
  • C#
  • ASP.NET

Kentico CMS helper functions to query nodes and return strong typed objects

Michael Roma on Oct 17, 2013

The following post shows Kentico 7 CMS wrapper functions that allow you to easily query nodes and return back a strong type.

  • Kentico
  • ASP.NET
  • C#

SQL helper script to generate properties for an Entity Framework model

Michael Roma on Oct 16, 2013

This post shows a T-SQL script that can be used to generate the properties for a class that correspond to to a field in a database table. This can be used with Entity Framework.

  • C#
  • SQL
  • Entity Framework

How to return a list of Twitter tweets using LinqToTwitter in C#

Michael Roma on Oct 16, 2013

The following example shows how to use LinqToTwitter to return back tweets from a specific twitter handle.

  • ASP.NET
  • C#

How to create a record in a Kentico BizForm through the Kentico API

Michael Roma on Oct 16, 2013

This post shows an example of how to create a record in a Kentico BizForm through the Kentico API.

  • Kentico
  • ASP.NET
  • C#

How to access the master page of a Portal Page template in Kentico CMS

Michael Roma on Oct 15, 2013

This post shows you how to access the actual master page for a Kentico Portal template. It allows you to edit the HTML tag and other areas that are not accessible from within the Kentico user interface

  • Kentico
  • C#
  • ASP.NET

C# Generic Extension function to check if an item is in the list of values

Michael Roma on Jul 23, 2013

The following is a C# Generic Extension function that checks if an item is in the given list of values.

  • C#