Dynamically Create Google Sitemap with ASP.NET
This article will cover dynamically generating your sitemap to submit to Google Sitemaps using ASP.NET and as usual the code will be available in C# and VB.NET. Whenever you develop a site with the intention of putting it on the internet, it’s necessary to do everything you can to index your site with the [...]
Adding paging to a repeater
While the Gridview control has pagination built in, alot of the time, you may want to add pagination into your repeater control as well. Thankfully, ASP.NET has a PagedDataSource object to help accomplish this task.
Upload, Read, and Parse file in ASP.NET
While there are many tutorials for ASP.NET on uploading and saving a file to the disk as well as read and parsing a file from the disk, there is no simple tutorial for uploading, reading and parsing the data in memory. A client of ours needed to do this so I thought I’d list [...]
Create popup date picker using ASP.NET calendar control
A client recently required a popup ASP.NET calendar control to use on their site. I thought we would share our solution to this.
Validation of viewstate MAC failed
We were working with a client on a site and for some reason all of a sudden we got the message below.
Javascript delete confirmation in Gridview or Repeater
A pretty common task needed within a gridview or repeated is to confirm an action when the user clicks on this. (typically a delete)