jmferris

Stories kicked by jmferris

Why "Undo" Should Not Exist in Team Foundation Server(blog.randominnovation.com)

submitted by jmferrisjmferris(85) 2 years ago

Covering the public desire for an "Undo" option in Team Foundation Server and why it is not the best of ideas. read more...

add a comment |category: |Views: 1

tags: another

Username check - usability improvements(encosia.com)

submitted by BagavathiBagavathi(150) 2 years, 9 months ago

user name check usability improvements read more...

add a comment |category: |Views: 20

tags: another

How to Create an Enterprise Library Cache Provider for Velocity(blogs.microsoft.co.il)

submitted by gilfgilf(2139) 2 years, 10 months ago

In the previous post I promised to give the recipe of how to create the a simple Velocity cache manager provider using the Application Block Software Factory. In this post I’ll keep my promise. read more...

1 comment |category: |Views: 110

tags: another

Asp.Net vs php : Speed Comparison(naspinski.net)

submitted by naspinskinaspinski(610) 2 years, 11 months ago

Why is the myth that php is faster than Asp.Net so prevalent? Asp.Net is faster than php, here are the facts. So many times I have heard php pushers claim that php is so much faster than Asp.Net and that Asp.Net is clunky and slow. The most annoying part is that everything I have read (that is not factless opinion), and I mean everything, says that this is wrong; but for some reason, this myth is widely accepted. It has become a religious argument that ignores the facts... read more...

add a comment |category: |Views: 1321

tags: another

Microsoft Web Platform Installer(weblogs.asp.net)

submitted by jonasjonas(2215) 2 years, 11 months ago

Scott Guthrie talks about the Microsoft Web Platform Installer which makes installing and configuring web server and web development stacks really easy. read more...

add a comment |category: |Views: 3

tags: another

VS2010 Beta 1 now on MSDN for Subscribers(redmondpie.com)

submitted by tdavisjrtdavisjr(335) 3 years ago

Microsoft today has released Visual Studio 2010 Beta 1 and .NET Framework 4.0 to its MSDN subscribers. Visual Studio 2010 is a monstrous and the most awaited release which is surely set to have a big impact on Microsoft platform developers in a positive way! read more...

add a comment |category: |Views: 21

tags: another

Visual Studio 2010 Beta 1 for MSDN Subscribers(vistadb.net)

submitted by vistadbvistadb(879) 3 years ago

Visual Studio 2010 Beta 1 is now on MSDN along with .Net 4 Beta 1. Some highlights from the information: .Net 4.0 Cloud Development - Windows Azure which is basically utility computing where you pay by the hour for your usage. Parallel Development - Not sure if this only means PLINQ for .Net developers or if they are only talking about C++ devs. TDD Improvements - Editor changes for building test cases first, and then writing the code. ASP.NET - CSS grids and design surfaces changes, more Javascript debugging improvements. C++ Compiler - Lots of changes for C++ development, including MFC. Sharepoint templates New Project Templates Windows 7 - MFC updates for Ribbon UI, and WPF changes. Application Model Changes - Reverse existing codebases, and lots of changes in Architect Edition to support more model types (including Class Libraries finally). Test Runner - This is potentially huge as it allows testers to submit bug reports complete with callstacks and traces that you can actually use to resume an app at the error point to avoid the dreaded No Repro on bug reports. I have seen this demo and it is quite impressive. We will see how it actually works though. read more...

add a comment |category: |Views: 387

tags: another

Somasegar Announces That Visual Studio 2010 Beta Released to MSDN Sub.(blogs.msdn.com)

submitted by just3wsjust3ws(560) 3 years ago

Get it while it's hot, Visual Studio 2010 Beta 1 has been released for MSDN Subscribers. Now's the time to get that Empower for ISV or BizSpark membership to work! read more...

1 comment |category: |Views: 10

tags: another

8 Must Have Tools when Going to the Client’s Site(hatim.indexdev.net)

submitted by HatimrHatimr(1492) 3 years ago

Have you ever been to a client’s site and you are in the middle of a large deployment and something goes wrong. Of course not! yeah ..sure Don’t you wish then you had packed with you the source code code, X or Y tool to help you better diagnose the issue... read more...

add a comment |category: |Views: 942

tags: another

Speed Up you MSDN Library Experience(initializecomponent.blogspot.com)

submitted by rayhenryrayhenry(100) 3 years, 1 month ago

Access a low-bandwidth version of MSDN Library. read more...

add a comment |category: |Views: 9

tags: another

Just say “No!” to C# Regions? Really?!(blog.dmbcllc.com)

submitted by jniesjnies(60) 3 years, 1 month ago

A response to "Just say No! to C# Regions" stating that regions CAN be good when they are used correctly. I agree with Dave on this, but what are your thoughts? read more...

add a comment |category: |Views: 17

tags: another

Implementing a Simple Generic Repository with LinqToSql(aleris.wordpress.com)

submitted by daboomdaboom(15) 3 years, 1 month ago

The Repository is a design pattern often used in Domain Driven Design (DDD) to help the domain layer access data needed from the underlaying persistence layer. The article shows how to implement a generic repository with LinqToSql. read more...

add a comment |category: |Views: 145

tags: another

Adaptive Rendering in ASP.NET MVC - Kazi Manzur Rashid's Blog(weblogs.asp.net)

submitted by jantujantu(1045) 3 years, 1 month ago

ASP.NET MVC comes with different action results for various purpose, but some times, you will find those are not adequate for your scenario, lets consider the following screenshot: When user navigates to a different tab or change the sort order or moves to a different page number, it will load the content as an ajax call, but if the user has JavaScript turned off, it will redirect to a regular url. One solution would be to create separate sets of controller actions that will return either the complete view (in case JavaScript is turned off) or the partial view and use the jQuery load to show the content. But the problem of this approach is that we will be duplicating the same logic for both the actions, moreover we will be returning the unnecessary html tags rather than pure json object that is sufficient for rendering the view. A better solution would be adaptive rendering. If you are not familiar with adaptive rendering then let me clarify it a bit, it is a process where the server responds differently depending upon the browser capability. So it has a broader scope(e.g. mobile devices, text only browsers etc) comparing to our above JavaScript on/off scenario. But for the time being let us only focus on the above, so instead of creating pure html/ajax only version we would like to take the advantage of the browser capability and for this we will create a new action result, the beauty of the new action result is, the controller remains completely unaware of what kind of request it is serving. Lets take a look of the controller action that is serving both: read more...

add a comment |category: |Views: 211

tags: another

Implementing Audit Trail using Entity Framework Part -2(codeproject.com)

submitted by anantoananto(105) 3 years, 1 month ago

Implementing Audit Trail using Entity Framework's caching entries with rollback features read more...

add a comment |category: |Views: 395

tags: another

Implementing Audit Trail using Entity Framework Part -1(codeproject.com)

submitted by anantoananto(105) 3 years, 1 month ago

Implementing Audit Trail using Entity Framework's caching entries. read more...

add a comment |category: |Views: 326

tags: another

Joe Stagner: Email Reporter: VSTS 2008 Load Test Plug-in(misfitgeek.com)

submitted by joycscjoycsc(1597) 3 years, 2 months ago

The ASP.NET Community Rocks !!!! ASP.NET MVP Mohammad Ashraful Alam just released a cool Plug-In for VSTS ....... An "Email Reporter" for VSTS..... "Email Reporter: VSTS 2008 Load Test Plug-in" enables users to send the load test reports to one or more pre-configured email addresses automatically, once a VSTS Load Test is completed. This open-source load test plug-in also provides supports for customization by which you can customize the reported performance data. " Check it out here..... http://code.msdn.microsoft.com/erep read more...

add a comment |category: |Views: 6

tags: another