johnrummell

Stories submitted by johnrummell

How to help yourself when NuGet goes down(www.xavierdecoster.com)

submitted by johnrummelljohnrummell(1321) 2 months, 19 days ago

Today will be remembered as the day that NuGet.org went down and broke quite some builds. While many people would love to see the NuGet team wearing a pink sombrero, there is something to say about wearing it yourself if you did not manage to work around this. Let me explain… read more...

2 comments |category: |Views: 131

tags: another

MessageBox – The jQuery Plugin(www.jrummell.com)

submitted by johnrummelljohnrummell(1321) 1 year ago

Now that I’ve been working more and more with ASP.NET MVC, I’ve been rewriting some of my server side controls with jQuery plugins. A while back I shared my version of Janko’s popular MessageBox control. I’ve created a similar effect with a jQuery plugin based on the Highlight/Error examples on the jQuery UI Themes page. read more...

add a comment |category: |Views: 13

tags: another

IIS Express and Visual Studio 2010 without SP1(www.jrummell.com)

submitted by johnrummelljohnrummell(1321) 1 year, 2 months ago

Here’s how you can integrate IIS Express with Visual Studio 2010 without SP1. I’m taking advantage of External Tools again. read more...

2 comments |category: |Views: 16

tags: another

Build ClickOnce deployment packages using MSBuild and Team City(www.laurentkempe.com)

submitted by johnrummelljohnrummell(1321) 1 year, 11 months ago

The other day I was requested to automate our build process to issue different ClickOnce setup for the same application. The main difference was some configuration files pointing to different back end web services. read more...

add a comment |category: |Views: 104

tags: another

Validation without ViewState(john.rummell.info)

submitted by johnrummelljohnrummell(1321) 1 year, 11 months ago

How to use ASP.NET validators on controls without ViewState. read more...

add a comment |category: |Views: 4

tags: another

VS 2010 and .NET 4 Series - ScottGu's Blog(weblogs.asp.net)

submitted by johnrummelljohnrummell(1321) 2 years, 4 months ago

Over the next few months I’m going to be doing a series of posts that talk about some of the cool things coming with the VS 2010 and .NET 4 release. VS 2010 and .NET 4 are the next major releases of our developer tools and framework. Together they contain a ton of new functionality and improvements that I think you’ll really like, and which make building applications of all types easier, faster and better. The improvements range from nice small tweaks to major, major enhancements - and can be found across the .NET Framework, the languages, and the IDE. read more...

add a comment |category: |Views: 25

tags: another

ASP.NET MVC 2 - ScottGu's Blog(weblogs.asp.net)

submitted by johnrummelljohnrummell(1321) 2 years, 4 months ago

Over the last six months the ASP.NET team has been steadily releasing preview, then beta, and now release candidate builds of ASP.NET MVC 2. Given that the final release is not too far away, I thought it was a good time to start a new multi-part ASP.NET MVC 2 blog series that discusses the new features and how best to take advantage of them. read more...

5 comments |category: |Views: 445

tags: another

Lazy Loading jQuery Tabs with ASP.NET(mikesdotnetting.com)

submitted by johnrummelljohnrummell(1321) 2 years, 5 months ago

This article looks at efficient use of jQuery tabs when displaying data. Specifically, it covers how to lazy-load data, so that it is only accessed and displayed if the tab is clicked. read more...

add a comment |category: |Views: 54

tags: another

SQL Server Management Studio and TortoiseSVN(john.rummell.info)

submitted by johnrummelljohnrummell(1321) 2 years, 6 months ago

How to use TortoiseSVN inside SSMS with External Tools. read more...

add a comment |category: |Views: 227

tags: another

ASP.NET MVC View Model Patterns(geekswithblogs.net)

submitted by johnrummelljohnrummell(1321) 2 years, 7 months ago

Since MVC has been released I have observed much confusion about how best to construct view models. Sometimes this confusion is not without good reason since there does not seem to be a ton of information out there on best practice recommendations. Additionally, there is not a “one size fits all” solution that acts as the silver bullet. In this post, I’ll describe a few of the main patterns that have emerged and the pros/cons of each. It is important to note that many of these patterns have emerged from people solving real-world issues. read more...

add a comment |category: |Views: 203

tags: another

Clean Web.Config Files (VS 2010 and .NET 4.0 Series) (weblogs.asp.net)

submitted by johnrummelljohnrummell(1321) 2 years, 9 months ago

This is the first in a series of blog posts I’m doing on the upcoming VS 2010 and .NET 4 release. Today’s post is about an admittedly small, but I still think kind of nice, change coming with ASP.NET 4.0: clean, simple, web.config files. You’ll encounter this improvement the first time you do a File->New Project within Visual Studio 2010 and create an empty ASP.NET 4.0 Web application (which is why I thought it might be appropriate to-do as the first post). read more...

add a comment |category: |Views: 21

tags: another

Apply the same CSS class to all validators in a web project(john.rummell.info)

submitted by johnrummelljohnrummell(1321) 2 years, 9 months ago

A simple script that allows you to apply a css class to all validators in a web project. read more...

add a comment |category: |Views: 19

tags: another

LINQ to SQL cheat sheet(damieng.com)

submitted by johnrummelljohnrummell(1321) 2 years, 9 months ago

A few short words to say I've put together a cheat sheet for LINQ to SQL with one page for C# and another for VB.NET. It shows the syntax for a number of common query operations, manipulations and attributes and can be a very useful quick reference :) read more...

add a comment |category: |Views: 51

tags: another

xVal with WebForms Part 2(john.rummell.info)

submitted by johnrummelljohnrummell(1321) 2 years, 9 months ago

Another look at how to use xVal like validation goodness with traditional ASP.NET WebForms. read more...

add a comment |category: |Views: 32

tags: another

Refactoring Day 1 : Encapsulate Collection(lostechies.com)

submitted by johnrummelljohnrummell(1321) 2 years, 9 months ago

In certain scenarios it is beneficial to not expose a full collection to consumers of a class. Some of these circumstances is when there is additional logic associated with adding/removing items from a collection. Because of this reason, it is a good idea to only expose the collection as something you can iterate over without modifying the collection. read more...

add a comment |category: |Views: 16

tags: another

xVal with WebForms(john.rummell.info)

submitted by johnrummelljohnrummell(1321) 2 years, 10 months ago

I finally found some time last night to see what it would take to get xVal working in an ASP.NET Web Application Project. After a few hours I had something. I only needed to add two classes on top of xVal, DataAnnotationsValidationRunner and ModelValidator. read more...

add a comment |category: |Views: 34

tags: another