Blog

Page 235 of my articles, tutorials, and thoughts

Latest Articles

Cover Image for How do I use IValidatableObject?
c#

How do I use IValidatableObject?

Published on September 2, 2023

# How to Use IValidatableObject to Validate Properties and Handle Ignored Failures πŸ“ **TL;DR:** Want to validate properties in a way that allows you to compare them and ignore failures on certain properties? You're in the right place! In this blog post

Cover Image for Get URL of ASP.Net Page in code-behind

Get URL of ASP.Net Page in code-behind

Published on September 2, 2023

πŸ“ **Title:** Get the URL of your ASP.Net page in the code-behind 🌐✨ πŸ‘‹ Hey there, web developers! If you've ever wondered how to easily retrieve the URL of your ASP.Net page in the code-behind, you're in the right place! 🎯 Sometimes, while working on

Cover Image for Create an array or List of all dates between two dates
c#list

Create an array or List of all dates between two dates

Published on September 2, 2023

πŸ’‘ **Title: Creating an Array or List of Dates Between Two Dates: Easy Solutions for Handling Non-Uniform Time Series Data** πŸ“… **Introduction:** Are you struggling to generate multi-series graphs where each series in the graph has different dates within

Cover Image for Format of the initialization string does not conform to specification starting at index 0
c#

Format of the initialization string does not conform to specification starting at index 0

Published on September 2, 2023

# Title: πŸš€ Troubleshooting the "Format of the Initialization String" Error in ASP.NET Apps Hey there, tech enthusiasts! πŸ‘‹ Are you an ASP.NET developer running into the dreaded "Format of the initialization string does not conform to specification starti

Cover Image for Parse JSON in C#
c#jsonparsing

Parse JSON in C#

Published on September 2, 2023

# πŸ“ How to Parse JSON in C# πŸ•ΈοΈ Are you struggling to parse JSON data in C#? Don't worry, we've got you covered! In this guide, we'll walk you through the steps to parse JSON in C# and display the results. 🀩 ## Common Issues and Solutions ### 1. Issue

Cover Image for Difference between <system.web> and <system.webServer>?

Difference between <system.web> and <system.webServer>?

Published on September 2, 2023

πŸ“ **Title: Understanding the Difference between `<system.web>` and `<system.webServer>` in ASP.NET** Hey there, fellow tech enthusiasts! 😎 If you've ever worked with ASP.NET and IIS7, you might have stumbled upon the `<system.web>` and `<system.webSer

Cover Image for ASP.NET Identity"s default Password Hasher - How does it work and is it secure?
c#passwordssecurity

ASP.NET Identity"s default Password Hasher - How does it work and is it secure?

Published on September 2, 2023

# πŸ“ Blog Post: ASP.NET Identity's Default Password Hasher - How Does It Work And Is It Secure? Are you using ASP.NET Identity Framework in your MVC 5 project? Have you ever wondered if the default Password Hasher that comes with it is secure enough? πŸ€”

Cover Image for ASP.NET web.config: configSource vs. file attributes

ASP.NET web.config: configSource vs. file attributes

Published on September 2, 2023

# Understanding the Difference: configSource vs. file Attributes in ASP.NET web.config πŸ“ **Introduction:** When working with ASP.NET applications, you may come across situations where you need to separate configuration settings from the `web.config` file

Cover Image for How to change the text of a label?
htmljavascriptjquerylabel

How to change the text of a label?

Published on September 2, 2023

πŸ–ŠοΈ **Title: Changing the Text of a Label: Easy Fixes for a Common Issue** **Introduction:** Have you ever encountered a situation where you needed to change the text of a label dynamically? You're not alone! Many developers face this challenge, especial

Cover Image for Predefined type "System.Object" is not defined or imported .net 4.6
c#json.net

Predefined type "System.Object" is not defined or imported .net 4.6

Published on September 2, 2023

# πŸš€ Solving the "Predefined type 'System.Object' is not defined or imported" Issue in .NET 4.6 Are you building a web API using MVC 5 and .NET 4.6, only to be bombarded with error messages claiming that various types don't exist in your project? 😫 Well,