I was implementing some paging functionality in a system I was building and realized that I had created the same forward, backward, first and last buttons and logic 3 times. After doing this I realized these buttons and logic were a perfect example of where I could reduce complexity and encapsulate my code better. I […]
Read More →Archive for April, 2018
Server Error 0x800004005 Request timed out.
I wrote this post and this lab about the impact of having debug=true in your web.config file. The fact is, when you are running in a production environment, you do not want to have debug=true. However, I was writing a series of NETSH tracing posts: Capturing a NETSH network trace Analyze NETSH traces with Wireshark […]
Read More →Adding groups to an Azure Active Directory domain
I wrote about creating a user in an Azure Active Directory domain or adding users to the Azure Active Directory domain here, but now I want to add some groups. Both of these articles are in preparation for an ASP.NET application I will write as an example for how to implement role based security into […]
Read More →Adding users to an Azure Active Directory domain
I am going to do a self study to learn how to implement authentications and authorization into my ASP.NET application using Azure Active Directory. Pretty much this, but with out using the AUX (OLD) portal (if now possible). Although it has already been done, I like to do it myself and I like to document […]
Read More →How to analyze a trace taken using NETSH TRACE
I wrote article “Capture a NETSH network trace” here, where I discussed how to capture a NETSH trace, I will discuss how I analyzed it now. I wrote another here that explains how to convert the ETL into a CAP file so it can be analyzed in Wireshark or Network Monitor. “Analyze NETSH traces with […]
Read More →Analyze NETSH traces with Wireshark or Network Monitor, convert ETL to CAB
I wrote a post about how I captured a NETSH trace here “Capture a NETSH network trace”. I like to use Wireshark to analyze my network traces, this post describes how I analyzed a NETSH .ETL trace file in Wireshark. NOTE: Wireshark is not a Microsoft product it is a 3rd party tool. Basically, I […]
Read More →Capture a NETSH network trace
Here are the official details on this one. I was needing to do this and realized that I had never written a post on this one. Although we are moving into the cloud and this isn’t needed so much anymore, all the IT pros who will continue to work with Windows Server within their own […]
Read More →Configuration error, targetFramework 4.7
I was deploying some code to one of my IIS servers and got this YSOD as seen in Figure 1. I had coded in Visual Studio 2017 with the .NET Framework 4.7 targeted from my ASP.NET Web Forms application I wrote. Figure 1, Server Error, targetFramework=”4.7” Server Error in “/” Application. Configuration Error Description: An […]
Read More →Resize a control within a WPF window grid at runtime
It’s kind of funny, you search and you search for the answer or keyword for achieving the resizing of controls within a WPF window at runtime but just can’t seem to get there easily. However, as soon as you find the right word there is an abundant supply of information about the topic. I mean […]
Read More →Resize WPF contents controls when window is resized
I created a nice utility in WPF today which contained a treeview, textbox, button and datagrid. The logic and work flow executed as expected, I was very proud of the work. I caught all my errors and exceptions and provided the user with options on how to proceed or correct the error. But the window […]
Read More →