Caching your WebView Environment to manage multiple WebView2 Controls
I've been struggling with some WebView initialization issues that are showing up in my application logs from a deployed application. Personally I've never run into these issues myself, however my...
View ArticleSave Files With Elevated Permissions on UnauthorizedAccessException
When building Desktop Applications that are document centric and that allow users to save files in any location - like an editor for example - you can run into a situation where on rare occasions a...
View ArticleEmbedding a minimal ASP.NET Web Server into a Desktop Application
Have you ever wanted to embed a Web Server into another application like a Desktop app for example? It's not a common scenario but I've had a number of occasions where I've had a need for this:Markdown...
View ArticleIntegrating OpenAI Image Generation into a .NET Application
I fell down a rabbit hole after playing around with various image generation AIs and decided that for me this is incredibly useful functionality that I would like to integrate into Markdown Monster -...
View ArticleWorking around the WPF ImageSource Blues
While working on the OpenAI Image Generator Addin from my previous post I ran into several behind the scenes issues related to the blasted Image control in WPF.Specifically I ran into two issues with a...
View ArticleSharing Tab Missing in Windows Folder Properties
For unfathomable reasons, Windows 11 is actively discouraging the Sharing Tab on the Explorer Properties Context Menu, where it used to sit by default.I'm talking about this tab when you select a drive...
View ArticleReading Raw ASP.NET Request.Body Multiple Times
Some time ago I wrote about retrieving raw HTTP request content from an incoming request and - surprisingly - it's one of the most popular posts on this blog. The post discusses a few ways how you can...
View ArticleComparing Raw ASP.NET Request Throughput across Versions
It's that time of year again to upgrade to a new machine, and one of the first things I often do once the machine is set up is run some performance tests of a simple ASP.NET application that tests raw...
View ArticleHtml to PDF Generation using the WebView2 Control
I've been using HTML to PDF generation for quite some time for a variety of purposes specifically in Markdown Monster. There are many solutions available - some good, some bad and many very expensive =...
View ArticleASP.NET Core Module with Shadow Copy Not Starting: Separate your Shadow Copy...
I recently ran into a problem with random failures of my ASP.NET Core Web application on IIS where I would get the dreaded ACNM Error Page (ASP.NET Core Module):This is on what used to a be a stable...
View ArticleSpeed up your Start Menu by disabling Web Search
I ran into a great tip yesterday on X, that is too good not to pass on and also to serve as a reminder for myself next time I install Windows:Holy hannah! Disabling web search on the start menu makes...
View ArticleMime Base64 is a Thing?
In all my years of developing software, sending binary data back and forth I've never heard of Mime Base64. Apparently that is a thing for email encoding of binary data for some legacy applications...
View ArticleC# Version String Formatting
How many times have I sat down trying to get versions formatted correctly for display? Inside of an application to end user? Too many!Sure, it seems easy enough - you can use version.ToString() or...
View ArticleDealing with Platform Specific Classes and Methods in CrossPlatform .NET
If you build libraries for .NET Core, you always have to take into account that they can be used cross-platform. If you're like me and have many older libraries scattered with a few methods and classes...
View ArticleWork around the WebView2 NavigateToString() 2mb Size Limit
The Microsoft WebView2 control has an issue with navigating to string content that exceeds 2 megabytes.This is a nasty, but documented limitation of the WebView2.NavigateToString() method. Nasty...
View ArticleBack to Basics: Await a Task with a Timeout
The other day I needed to set a TaskCompletionSource and wait on an operation to complete. Easy enough - you can just await the tcs.Task. But in some cases the operation doesn't complete, and so it's...
View ArticleCreate a .NET PlantUML Markdown Render Extension
It's been a while since I've posted some Markdown Monster content, so I thought I'd share a fun feature I recently added to my Markdown Monster editor. In the process I'll highlight a useful library...
View ArticleNuking Local Nuget Package Sources to show newly Published Packages
I've run into this scenario way too many times as a NuGet package creator:I update a NuGet PackageI publish it to NuGet Package StoreI wait a few minutesI open another projectI try to update and...
View ArticleGetting the ASP.NET Core Server Hosting Urls at Startup and in Requests
Today I was helping out a customer with their ASP.NET core application that wasn't starting up on a live server, hosted in IIS. Not uncommon in a first install, and when this happens I often resort to...
View ArticleUsing Sql Server on Windows ARM
I recently picked up a Windows ARM device in the form of a Samsung Galaxy Book 4 with a SnapDragon X Elite chip. Best Buy had a sale going for $799 at the time, and so I 'snapped' one up.I've been...
View ArticleGetting the Current TabItem when the Tab is not selected in WPF
This is a quick reminder to self on how to retrieve a TabItem from a WPF TabControl when the tab is not currently selected because I run into this quite frequently and the flail around trying to...
View ArticleBack to Basics: Using the Parallel Library to Massively Boost Loop Performance
A few days ago I posted a quick note on X about a specific use case of using the Parallel library in .NET to massively optimize a link look up operation in Markdown Monster with very little code. That...
View ArticleComparing Raw ASP.NET Request Throughput across Versions: 8.0 to 9.0 Edition
Whenever a new release of .NET comes out I run a comparison test of versions using some of my own load testing tools and in this post I look at .NET 8.0 to 9.0. These posts tend to be a a bit rambling...
View ArticleRetrieving Images from the Clipboard Reliably in WPF Revisited
I've written previously about image formatting issues with the clipboard data in WPF and for the most part what I discussed in that post has been working just fine.Recently however I started noticing...
View ArticleInline Confirmations in JavaScript UI
Confirmation dialogs or modal popups can be annoying in HTML applications. What if you could instead use an inline UI to confirm an operation? In this post I describe a simple way you can use an inline...
View ArticleFix that damn Git Unsafe Repository
As of Git 2.36.2 Git has a new security feature that won't allow running Git commands until the folder the repository lives in is 'trusted'. This can be annoying, but it's relatively easy to fix. In...
View ArticleHTML Table Cell Overflow Handling
HTML table column wrapping and truncating doesn't work like other HTML elements. Specifically if you want to keep table column content from wrapping via `overflow` or `white-space` wrapping settings...
View ArticleWindows Audio Encoding Failure after Settings Change
Ran into a problem with Windows Audio not playing for MP3, WAV and other music files as well as some applications like Spotify. Any audio playback ended up resulting in an error related to an invalid...
View ArticleBasic Windows Machine Hardware information from WMI for Exception Logging...
When writing out error information for a desktop application to a log whether local or to a telmetry engine, it's useful to get some idea of what hardware the app is running on. WPF applications in...
View ArticleA Button Only Date Picker and JavaScript Date Control Binding
The native date picker in HTML is a bit of a pain to work with as it's overly simplistic in features and how you have to assign and retrieve values from it. It also isn't customizable so if you need to...
View ArticleUpperCase Styling via CSS and text-transform
I learned something new today: there's a CSS `text-transform` style property that can be used to transform text automatically to upper, lower or capitalized case. No JavaScript contortions and it just...
View ArticleAsync Event Methods and preventDefault() in JavaScript
When using async events, it's important to understand how events work when called asynchronously. Specifically if you need to interact with the event context for things like preventDefault(),...
View ArticleWkHtmlToPdf: Dealing with broken Url Encoded and Extended Character Links
WkHtmlToPdf is a commonly used tool to create PDF documents from HTML files or Urls. Unfortunately it's a bit cranky and one of the problems you can run into is that links that include URL encoding...
View ArticleUsing Application Insights in .NET Desktop Applications
Using Application Insights with desktop applications isn't the most obvious operation, as App Insights has been primarily designed as a tool for providing logging, statitics and exception report for...
View ArticlePreventing iOS Textbox Auto Zooming and ViewPort Sizing
If you've build mobile Web applications that need to run on iOS Safari and on an iPhone you might have run into the problem of input fields 'auto-zooming' the display when the input field and popup...
View ArticleSetting an Absolute Output Path for .NET SDK Projects
By default .NET SDK project dump their final build output into a deeply nested folder structure that describes the build configuration, target, platform and sometimes additional package folders. While...
View ArticleSending and Receiving GMail Email Attachments that contain Code or Binaries
As a developer, you're likely to occasionally send an email with attachments that are either code or binary executable files either as straight files or in a zipped up collection of code or binary...
View ArticleRemoving the IIS Server Request Header from ASP.NET Core Apps (any version)
ASP.NET Core applications that run on IIS as InProcess output an Server name for IIS into the HTTP headers. If you want to remove the server header, you'll find that the process for IIS is different...
View ArticleImplementing Two-Factor Auth using an Authenticator App in ASP.NET
Two factor authentication using Authenticator apps is getting more popular. One advantage of Authenticator 2FA is that you don't need to use a service nor do users have to provide additional bits of...
View ArticleGetting .NET Library Projects to Output Dependent Assemblies
Recent .NET Core versions have changed how .NET Core Library projects output dependencies into the build folder. The new behavior doesn't output depdencies, unlike full framework .NET projects which...
View ArticleGetting the .NET Desktop Runtime Installed with a Custom Runtime Checker and...
I've recently moved my Markdown Monster Desktop Application to .NET 7.0 and I had to make a decision on how to get the Runtime installed or packaged with my application. In this post I review the...
View ArticleA WPF Statusbar Control
Statusbar controls are boring, but because of the way that they are used there are a number of caveats like ensuring the UI updates even in linear code, allowing for timeouts of status messages and...
View ArticleMap Physical Paths with an HttpContext.MapPath() Extension Method in ASP.NET
ASP.NET Core doesn't have a Server.MapPath() method as classic ASP.NET had, and getting at the root path in Core is a little bit more involved than in those older versions. In this post I describe how...
View ArticleDotnet Tool Component not found on the Mac
I've run into this problem a few times: I install a new Mac OS and then install the .NET SDK. A bit later I install a dotnet tool using `dotnet tool install -g` and then try to run it, only to find out...
View ArticleIIS Error 500.19 with ASP.NET Core Application
Running on IIS locally is pretty rare, but if for some odd reason you decide to run IIS locally on your dev machine you might find yourself getting a 500.19 error which relates to an issue in the...
View ArticleRolling Forward to Major Versions in .NET
.NET Core has sophisticated policies that allows your applications that are compiled to specific versions of the .NET Runtime can roll forward to newer versions. You can specify what part of the...
View ArticleResolving Paths To Server Relative Paths in .NET Code
ASP.NET Core automatically resolves 'virtual' paths in Razor pages or views to a site relative path. So if you have something like:<script src="~/lib/scripts/helpers.js" /> It will resolve to the...
View ArticleAccessing Windows Settings Dialogs from Code via Shell Commands
I was unaware of this: You can access Windows configuration dialogs via an ms-settings: shell command via command Uri that works with:Shell Commands in your applications (ShellExecute() or...
View ArticleMaking Html Input Controls Truly ReadOnly
Although HTML has support for readonly control content, the behavior is not really well implemented in Web browsers. readonly display some minimal alternate styling (which you can customize via CSS),...
View ArticleUsing Windows.Media SpeechRecognition in WPF
Windows has a pretty capable SpeechRecognition engine built-in via Windows Media services. In .NET these features are accessible via the Windows SDK (WinSdk) that expose these Windows features to .NET...
View Article