bradygaster

Stories submitted by friends of bradygaster

Building a jQuery Plug-in to make an HTML Table scrollable(www.west-wind.com)

submitted by rstrahlrstrahl(7226) 11 months, 28 days ago

Table displays in limited space require some rendering alternatives. While paging is a common way to address fixed size displays, it's not an end-all solution. Sometimes it's necessary to display larger amounts of data in a small fixed space on an HTML page. Scrollable list are fairly easy to do with most HTML structures, but HTML tables are notoriously difficult to manage when it comes to scrolling. In this post I describe a jQuery plug-in that attempts to make any table scrollable by decomposing and reassembling the table into two distinct areas. read more...

add a comment |category: |Views: 31

tags: another

Built-in GZip/Deflate Compression on IIS 7.x(www.west-wind.com)

submitted by rstrahlrstrahl(7226) 1 year ago

IIS 7.x makes content compression via GZip very easy. Here's how compression on IIS works and how you can set it up on your server in a few simple steps. read more...

add a comment |category: |Views: 40

tags: another

ASP.NET GZip Encoding Caveats(www.west-wind.com)

submitted by rstrahlrstrahl(7226) 1 year ago

GZip and Deflate compression is easy to use in ASP.NET applications, but there are a few caveats that you need to watch out for. This post reviews the basics of implementing compression in ASP.NET code and describes a couple of scenarios that can cause problems when using programmatic compression via Response.Filter. read more...

add a comment |category: |Views: 7

tags: another

ASP.NET Routing not working on IIS 7.0(www.west-wind.com)

submitted by rstrahlrstrahl(7226) 1 year, 1 month ago

Got caught be a difference in behavior between IIS 7.0 and IIS 7.5 with how module management to extensionless URLs are fired in IIS. Routing was working fine on my dev machine, but not on my live server. Here's what you need to watch out for. read more...

add a comment |category: |Views: 24

tags: another

Setting up custom ASP.NET Routing to an HttpHandler(www.west-wind.com)

submitted by rstrahlrstrahl(7226) 1 year, 1 month ago

Routing support in ASP.NET 4.0 has been vastly improved, but custom routing still involves a fairly complex process of creating RouteHandlers and mapping requests properly. In this post I show an example of how to create custom routes automatically via Attribute route mapping for Http Handler endpoints. read more...

add a comment |category: |Views: 20

tags: another

Hosting the Razor Engine for Templating in Non-Web Applications(www.west-wind.com)

submitted by rstrahlrstrahl(7226) 1 year, 4 months ago

In this article I describe a set of classes that provide a wrapper around the Razor View Engine so you can use it easily in your own applications to provide templating functionality. read more...

1 comment |category: |Views: 71

tags: another

Fix for the ever-growing Search and Replace Dialog(connect.microsoft.com)

submitted by yesthatmcgurkyesthatmcgurk(4063) 1 year, 9 months ago

MS just released a fix for the ever-growing Search and Replace dialog for Visual Studio 2010. Been waiting for this since RTM! read more...

add a comment |category: |Views: 24

tags: another

Oh, look! ASP.NET MVC 3 preview 1 released!(www.microsoft.com)

submitted by yesthatmcgurkyesthatmcgurk(4063) 1 year, 9 months ago

The blogs are silent, but preview 1 of MVC 3 just became available on Microsoft's downloads page. read more...

add a comment |category: |Views: 9

tags: another

Final release for Silverlight 4 tools includes WPF fixes!(karlshifflett.wordpress.com)

submitted by yesthatmcgurkyesthatmcgurk(4063) 1 year, 11 months ago

The final release of Silverlight 4 tools includes fixes that affect all WPF users, specifically those who are experiencing issues with design time data. Update today! read more...

add a comment |category: |Views: 6

tags: another

Could not load type System.Configuration.NameValueSectionHandler(stevesmithblog.com)

submitted by scottcatescottcate(825) 2 years ago

Something you may run into upgrading .net projects. read more...

add a comment |category: |Views: 28

tags: another

Use T4 templates to declare you dependency objects(www.scottlogic.co.uk)

submitted by yesthatmcgurkyesthatmcgurk(4063) 2 years ago

Okay, while that's cool enough (kill me if I have to wade through another code file chock full of DP BS), this article contains details about using the DTE from within T4 templates and other nuggets that will enrich your code beyond this subject alone. read more...

add a comment |category: |Views: 21

tags: another

MetaGen: Use T4 templates to remove reflection from your code!(danielvaughan.orpius.com)

submitted by yesthatmcgurkyesthatmcgurk(4063) 2 years ago

Why should you care? Ever implement INotify*Changed? Smell all those strings? Or have you ever {Binding I_Hope_This_is_Spelled_Right}? With a simple little T4 template you can rid your code of these nasty smelly strings! read more...

add a comment |category: |Views: 36

tags: another

ScottGu acknowledges Tiny Face Man from the VS 2k8 installer(twitter.com)

submitted by yesthatmcgurkyesthatmcgurk(4063) 2 years, 1 month ago

No need to click through; here is his comment in full: "Not sure why there are people in the posters. At least the freaky smile guy in VS setup is gone w/ 2010 - he will haunt us no more :)" read more...

1 comment |category: |Views: 18

tags: another

Step by step guide for upgrading from TFS 2010 RC to RTM(geekswithblogs.net)

submitted by yesthatmcgurkyesthatmcgurk(4063) 2 years, 1 month ago

Full, step by step guide to upgrading from RC to RTM (final release). Use this guide if you have source in TFS 2010 RC that you want to keep after installing the RTM. read more...

add a comment |category: |Views: 63

tags: another

How to run, ON THE CHEAP, an IIS7 hosted website on Amazon EC2(learn.iis.net)

submitted by yesthatmcgurkyesthatmcgurk(4063) 2 years, 1 month ago

Its beautiful.... This article shows step by step, with clear instructions and lots of images, how to host your asp.net website on Amazon's EC2. I'm shocked at how easy it is. 1) Create account 2) Select image 3) do a little dance 4) publish your website to the cloud read more...

3 comments |category: |Views: 677

tags: another

What the heck is a URI and why can't I just use a string?(blogs.msdn.com)

submitted by yesthatmcgurkyesthatmcgurk(4063) 2 years, 3 months ago

The System.Net team at MS answers this and other questions in the System.Uri faq. read more...

add a comment |category: |Views: 9

tags: another