Technology Related Links for May 11th by Jason N. Gaylord's Blog

If you are looking to follow this series, be sure to subscribe to my RSS feed at http://feeds.jasongaylord.com/JasonNGaylord or my Twitter account at http://twitter.com/jgaylord . This series can be followed by using the Hot Links tag. Series Post #10...

Technology Related Links for May 8th, 2009 by Jason N. Gaylord's Blog

If you are looking to follow this series, be sure to subscribe to my RSS feed at http://feeds.jasongaylord.com/JasonNGaylord or my Twitter account at http://twitter.com/jgaylord . This series can be followed by using the Hot Links tag. Series Post #9...

Technology Links for May 7th, 2009 by Jason N. Gaylord's Blog

If you are looking to follow this series, be sure to subscribe to my RSS feed at http://feeds.jasongaylord.com/JasonNGaylord or my Twitter account at http://twitter.com/jgaylord . This series can be followed by using the Hot Links tag. Series Post #8...

Technology Related Links for May 6th, 2009 by Jason N. Gaylord's Blog

If you are looking to follow this series, be sure to subscribe to my RSS feed at http://feeds.jasongaylord.com/JasonNGaylord or my Twitter account at http://twitter.com/jgaylord . This series can be followed by using the Hot Links tag. Series Post #7...

Technology Related Links for May 4th, 2009 by Jason N. Gaylord's Blog

If you are looking to follow this series, be sure to subscribe to my RSS feed at http://feeds.jasongaylord.com/JasonNGaylord or my Twitter account at http://twitter.com/jgaylord . This series can be followed by using the Hot Links tag. Series Post #5...

Technology Related Links for April 30, 2009 by Jason N. Gaylord's Blog

If you are looking to follow this series, be sure to subscribe to my RSS feed at http://feeds.jasongaylord.com/JasonNGaylord or my Twitter account at http://twitter.com/jgaylord Series Post #3 Architecture and Design Patterns Agile Project Management...

Technology Related Links – Post #2 by Jason N. Gaylord's Blog

If you are looking to follow this series, be sure to subscribe to my RSS feed at http://feeds.jasongaylord.com/JasonNGaylord or my Twitter account at http://twitter.com/jgaylord Books Beginning ASP.NET MVC – FREE CHAPTER Cloud Computing Bumping into a...

Technology Related Links – Post #1 by Jason N. Gaylord's Blog

I’m going to try to put together a list of links I grab and post them to intermittent blog posts. I’d like to do a post like this once a day or at the very least once a week, but let’s see where things go. :) Anyway, here’s the first batch of links summarized...

Debugging ASP.NET MVC Routing by Jason N. Gaylord's Blog

One of the most critical pieces to MVC is routing users to the proper controller. During the development process, you must keep in mind that routes will take users to the first pattern that matches. It’s not that difficult to create patterns that are...

Web Site Performance by Jason N. Gaylord's Blog

I came across a post on StackOverflow.com regarding web site performance . Quite often you can take a look at your application and find 10 different ways to make it more efficient. Depending on your environment, you may have many different ways to increase...

Velocity Podcast by Jason N. Gaylord's Blog

Want to learn more about Microsoft Velocity and how this distributed caching system can improve your web applications? Then you'd better check out the new Velocity podcast at ASP.NET Podcast. You can download the MP3 at http://www.aspnetpodcast.com...

Tip: Set the SelectedValue on a DropDownList that is populated by a CascadingDropDown by Jason N. Gaylord's Blog

When using a DropDownList, you can set the selected item by using the SelectedIndex property. However, if your DropDownList is being populated by the CascadingDropDown control (from the ASP.NET AJAX Control Toolkit), that doesn't work. Instead, you...

Adding QueryString Parameters to the SiteMapNode by Jason N. Gaylord's Blog

There is no way to add querystring parameters to the SiteMapNode in a SiteMap control "out of the box." I'm quite surprised there is no option but luckily the SiteMap uses the provider model. After a Live search, I was able to find a solution...
Filed under: ,

Retrieving SQL Type Image Using LINQ by Jason N. Gaylord's Blog

LINQ views the Image type in SQL Server as Binary. So, there are a few options that we have. We can either (a) modify our LINQ to SQL class and change the property to Byte() instead of Binary or we can (b) convert the Binary to an array. To do the latter...

Writing a Base64 String to the File System or Browser by Jason N. Gaylord's Blog

Quite often, vendors pass images or PDFs to customers using the binary contents of the file. To make it more secure, they convert the binary contents to a Base64 string. A full explanation about Base64 encoding can be found at Wikipedia here . Anyway...
Powered by Community Server (Commercial Edition), by Telligent Systems