Login


ASP.NET

Articles related to website development using ASP.NET.
Web Development » ASP.NET

 

General
Miscelleneous article related to web development using ASP.NET.

Create an RSS Feed in ASP.NET
Demonstrates how to create an RSS feed in an ASP.NET application.
By Jonathan Wood on Tuesday, December 7, 2010

Creating Downloadable Content Dynamically
Your users may find it helpful if they can download your site's content so they can load it into applications like Microsoft Excel. But how can you create that downloadable content if your data is coming from a database? Here's a simple way to accomplish this.
By Jonathan Wood on Sunday, January 23, 2011

Dynamic Sitemaps in ASP.NET
Sitemaps can be a useful tool for helping search engines like Google find all the content on your site. But what if your content comes from a database? This article shows how to create a dynamic sitemap in ASP.NET.
By Jonathan Wood on Sunday, January 9, 2011

Dynamically Populating Controls using AJAX
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.
By Jonathan Wood on Saturday, July 2, 2011

Generating a Element
Here's some code that generates a random machineKey element suitable for pasting into your ASP.NET web.config file.
By Jonathan Wood on Tuesday, April 26, 2011

Recursively Finding Controls
ASP.NET Web Form controls provide the FindControl method for finding child controls. However, FindControl does not find child controls of child controls. So here's a simple extension method that will accomplish that.
By Jonathan Wood on Thursday, March 22, 2012

Redirecting to WWW on ASP.NET 4.0 and IIS7
Simple way to redirect pages to URL with a WWW prefix.
By Jonathan Wood on Tuesday, December 7, 2010

Writing a Custom HTTP Handler in ASP.NET
Time was, you had to delve into a number of IIS settings to implement a custom HTTP handler. Thanks to ASP.NET 4 and IIS7, this is no longer the case.
By Jonathan Wood on Saturday, January 22, 2011