/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

m0sa.net
| | michaelscodingspot.com
4.7 parsecs away

Travel
| | Michael Shpilt's Blog on .NET software development, C#, performance, debugging, and programming productivity
| | kylewbanks.com
6.7 parsecs away

Travel
| | There's three common methods of creating a String with the appropriate user ID in place, namely direct string concatenation, using a StringBuilder, or using String.format. I personally find using the String.format method to be the cleanest and tend to use it when applicable, but I recently began wondering how it act...
| | blog.slaks.net
70.4 parsecs away

Travel
| | [AI summary] The provided text is a comprehensive collection of technical documentation and articles covering various topics in web development, including ASP.NET, Razor, jQuery, and database connection strings. It discusses topics such as Razor page compilation, helpers, and the WebPages framework, as well as practical coding issues like HTML encoding and connection string construction. The text is highly technical and assumes a solid understanding of web development concepts and practices.
| | andreabergia.com
41.3 parsecs away

Travel
| Error handling is a fundamental aspect of programming. Unless you are writing hello world, you will need to handle errors in your code. In this post, I will discuss a bit the most common approaches used by various programming languages. Return error codes This is one of the most ancient strategies - if a function can fail, it can simply return an error code - often a negative number, or null.