Dynamically Populating Controls using AJAX
by Black Belt Coder Article Feed on Jul.01, 2011, under Articles
This article demonstrates how to populate a control from JavaScript by calling a server-side method. The server-side method returns the data (from a database or anywhere else), which the JavaScript uses to populate the control.
Dynamically Populating Controls using AJAX
by Black Belt Coder Article Feed on Jul.01, 2011, under Articles
This article demonstrates how to populate a control from JavaScript by calling a server-side method. The server-side method returns the data (from a database or anywhere else), which the JavaScript uses to populate the control.
Reading and Writing CSV Files in C#
by Black Belt Coder Article Feed on Jun.25, 2011, under Articles
An easy way to share data with programs like Microsof Excel is to read and write Comma-Separated Values (CSV) files.
Easy Full-Text Search Queries
by Black Belt Coder Article Feed on Jun.21, 2011, under Articles
SQL Server’s Full-Text Search offers a powerful and efficient way to search your data. However, the Full-Text Search syntax can be rather cryptic, especially for unsuspecting users. Here’s a class that will convert simple search queries into valid Full-Text Search queries.
6 Free E-Books and Tutorials on HTML5
by Black Belt Coder News Feed on Jun.04, 2011, under Articles, News
Although it will probably be a while until HTML5 has been fully defined, and implemented by all major browsers, there are good reasons to get up to speed with HTML5 now.
A JavaScript Formatter
by Black Belt Coder Article Feed on May.22, 2011, under Articles
JavaScript that has been compressed to use less bandwidth can be very difficult to read. Here’s a C# class that will format JavaScript code, making it easy to read again.
Free ASP.NET MVC and Web Forms Video Training
by Black Belt Coder News Feed on May.22, 2011, under Articles
Microsoft has recently published some great end-to-end video training courses on the asp.net website.
Starting Web Development with Microsoft WebMatrix
by Black Belt Coder News Feed on Apr.28, 2011, under Articles
Microsoft's Developer Guidance team has just released Starting Web Development with Microsoft WebMatrix on MSDN.
Replacing .NET Reflector
by Black Belt Coder News Feed on Apr.28, 2011, under Articles
.NET Reflector is a tool for browsing .NET classes. If you've never seen this, you are really missing out. In effect, it's like having searchable source code for the .NET libraries, including those written by third parties.
Generating a <machineKey> Element
by Black Belt Coder Article Feed on Apr.26, 2011, under Articles
Here’s some code that generates a random machineKey element suitable for pasting into your ASP.NET web.config file.