Creating an Angular Single Page Application with Azure Active Directory and adal.js that uses an ASP.NET WebAPI 19 april 2017 0 This sample shows how to create a single page application (SPA) that uses Azure Active Directory (AAD) authentication with adal.js and uses an ASP.NET WebAPI with AAD. The source code for this sample can be found in the angular2-adaljs-webapi GitHub repository.…
Add Azure Active Directory to an existing ASP.NET MVC web application 5 april 2017 2 There are 2 options to add Azure Active Directory to your existing ASP.NET MVC application. The easiest one is in Visual Studio. Right-click on your web project, and you are presented with the possibility to configure Azure AD Authentication. This…
Aspect Oriented Programming (AOP) with PostSharp 27 mei 2011 0 What is AOP (Aspect Oriented Programming)? Aspect oriented programming breaks down programming logic in separate concerns. It separates and groups blocks of code that perform a specific operation and that can be applied to or re-used by different pieces of…
Introducing NuGet 23 mei 2011 0 What is NuGet? From the NuGet website: NuGet is a Visual Studio extension that makes it easy to install and update open source libraries and tools in Visual Studio. Installing NuGet Method 1: NuGet comes with ASP.Net MVC3 The easiest…
Telerik Grid ClientTemplate with collection inside column 13 augustus 2010 0 I have defined a ClientTemplate which needs to display an employee and its roles as a list of items inside a single column. Take following example: Model person.cs: public class Person{ public Guid Id { get; set; } public string…
Prevent caching of stylesheet and javascript files 10 augustus 2010 0 First something about caching The numerous caching options you have in ASP.NET (MVC) are mainly focused on data and page output caching. But caching also occurs at the webserver, network and browser level. These you can’t always control from within…