C# Reading huge text file or CSV in the fastest way 17. May 2016 Marco Giorgi ASP.NET (1) Here is the code that have high performance on reading large text files:using (FileStream fs = File. [More]
Identity Tables 29. March 2016 Marco Giorgi ASP.NET, Security (1) Here is the SQL script to create identity tables:GO/****** Object: Table [dbo].[Roles] [More]
Password validation in ASP.Net using a RegularExpressionValidator 20. January 2016 Marco Giorgi ASP.NET (0) Here is some configurations to use in password validation: Alphanumeric with special Characters [More]
Views and Entity Framework: missing primary key 6. November 2015 Marco Giorgi ASP.NET (0) if you are trying to map a view in the entity framework and you get the following message:"The table [More]
Asp.Net Web Forms: Routing and friendly URLs 22. September 2015 Marco Giorgi ASP.NET (0) In order to enable URL rewriting and/or friendly URLs, you must create the RouteConfig class in the [More]
Bundling and Minification with Asp.Net Web Forms 22. September 2015 Marco Giorgi ASP.NET (0) Bundling and minification are two techniques you can use in ASP.NET 4.5 to improve request load time [More]
Asp.Net Identity 2 - Rename Tables and Fields 24. March 2015 Marco Giorgi ASP.NET (1) Just the other day I decided to migrate from the old and reliable Custom Membership Provider to the [More]