Analysis and Insights on #aspnet
ASP.NET is an open source web framework, created by Microsoft, for building modern web apps and services with .NET.
Articles tagged aspnet:
ANCM InProcess Start Failure Shenanigans
Common issue with .net core solutions when you deploy to a server and get ANCM In-Process failures
Read MoreSQL Server Reporting Services (SSRS)–How to open SSRS Project
Ever try to open an older SQL Server Reporting Services (SSRS) project and do not know what product it opens with? SSRS and how to add/manage reports always seems to be a problem. Well, Visual Studio 2017 has an extension that you can use to open the older rptproj files. Give it a go.
Read MoreAttaching to .NET Debugger w/Visual Studio ASP.NET Core
You have a website up and running, and now you want to connect the Visual Studio Debugger. This is often the case if you do not start with F5 - Debug to start the browser and automatically attach to the .net debugger. In reality, I almost never push F5. Instead, I attach to the debugger on the fly with the approach below. Take a moment to check it out.
Read Moredotnet new–install Error
When building a new solution template for ASP.NET Core solution, I received the above error. I had not seen this with prior template build efforts. This was new with .NET Core.
Read More
Web Site (to do and not todos)
I read this post by Josiah Cole and have to provide this abbreviated list and less sarcastic version of things to do when designing a web site.
Read MoreCSS Lost, Missing, Absent, Gone after Postback in Asp.NET
I have a generic function in one of my helper libraries that allows me to open a new browser window when a button is selected.
Read More



Microsoft AJAX Features and Implementation Samples
There are many options within the Microsoft stack of products for AJAX type functionality. The following article covers the primary mechanisms that utilize the Microsoft out of the box Ajax functionality. Ajax must be one of the technologies used in all current web applications. The primary benefit is the improved user experience by providing quick, responsive feedback. Core features include Ajax Client Libraries and Ajax Server Controls.
Read More

.NET 4 New GAC Locations/GacUtil
There are now 2 distinct GAC locations that you have to manage as of the .NET 4 Framework release...
Read More
Json–know more
{“People”:{ {“name”:”frank”, “age”:”21”}, {“name”:”joe”,”age”:44”} , “Markeing”: {“name”:”frank”, “age”:”21”}, {“name”:”joe”,”age”:44”} } }
Read More
Convert string to Enum c#
Converting a string to enum is quite easy one, but it needs some attention when converting from string to enum
Read More
IIS 6 MVC CSS Troubles - Styles not recognized
I deployed my mvc 3 application to IIS 6 (with NTLM authentication)....
Read MoreIntellisense and JavaScript in Visual Studio 2012
How to enable intellisense with Visual Studio and JavaScript
Read More