Skip Navigation LinksHome > Blog

Blog

How to create an Excel file (Without Excel)

How to export the results of a SQL query to CSV or Excel format without installing Microsoft Excel.

Understanding Models, Views, and Controllers

This tutorial provides you with a high-level overview of ASP.NET MVC models, views, and controllers. In other words, it explains the ‘M’, ‘V’, and ‘C’ in ASP.NET MVC. After reading this tutorial, you should understand how the different parts of an ASP.NET MVC application work together. You should also understand how the architecture of an ASP.NET MVC application

5 Reasons to do Web Design in ASP.NET MVC

Dan Wahlin presents 5 compelling reasons to try out ASP.NET MVC: Automatic mapping of control values to object properties Automatic generation of views Built-in AJAX support Intergrarion with other JavaScript libraries such as JQuery Promotes better coding practices and a Solid Application Architecture  

How to post updates to Twitter using WebClient

Bruno Piovan shows how to post updates to Twitter using the .NET WebClient. Very simple and elegant. No need to include an external library. public void PostTwitterUpdate(string userName, string password, string updateMessage){ using (WebClient wc = new WebClient()) { wc.Credentials = new NetworkCredential(userName, password); ServicePointManager.Expect100Continue = false; byte[] updateMessageBytes

Using tinyurl.com in a .Net application

I just discovered a way to automatically shorten urls posted to Twitter:     public static string MakeTinyUrl(string url)    {        try        {            if (url.Length <= 30)            {                return url;     

Testing

This is just a test.

30 Useful Web Design Books for 2009

The year 2009 promises to bring us some excellent, and even groundbreaking, new reads. Listed below are 30 web design related books from some of the brightest designers and developers in the industry, that will likely be influential must-reads.

4 Principles of Good Design for Websites

From Andrew Houle's blog: This post dissects 4 principles of web design that help you create cleaner, more aesthetically pleasing sites. Contrast Repetition Alignment Proximity It’s unbelievable how much better your designs will become when you take into consideration these four basic principles. There are always more things to consider, but a foundation of contrast, repetition, alignment and

8 Things Every Beginner SEO Should Know

Jordan  posted a very quick and dirty list meant for people wanting to find out the absolute bare bones of SEO.Search Engine Optimization is the art of getting your site positioned as close to the top of the front page as possible. Here are the 8 items that Jordan considers most important: HTML Document Title HTML Document name Incoming links Page content Sitemaps Outgoing links Heading (H1,H2,

10 Rare HTML Tags You Really Should Know

From Glen Stansberry's blog: Here are ten of some of the most underused and misunderstood tags in HTML. While they might be less familiar, they're still quite useful in certain situations. <cite> <optgroup> <acronym> <address> <ins> and <del> <label> <fieldset> <abbr> <rel> <wbr> I've used only three of these tags in my web development