snaits

Stories kicked by snaits

Tackling timeouts(softscenario.blogspot.com)

submitted by snaitssnaits(197) 1 month, 2 days ago

A brief how-to of how to cope with SQL timeouts. read more...

1 comment |category: |Views: 128

tags: another

Take your ASP.NET Controls to the Gym(blogs.telerik.com)

submitted by TelerikTelerik(388) 1 month, 3 days ago

One of the new ASP.NET 4.5 improvements I’m excited about is the ability to have strongly typed controls. That’s right, you heard me, strongly typed! Why am I so excited about them? Read on to find out. read more...

1 comment |category: |Views: 252

tags: another

Data Binding with Knockout(jameslewiscv.com)

submitted by JamesLewisAwesomeJamesLewisAwesome(75) 1 month, 4 days ago

Quick overview and example of data binding with knockoutjs. read more...

3 comments |category: |Views: 219

tags: another

Lazy Programming for Smarties(blogs.dotnetkicks.com)

submitted by bsenoffbsenoff(1583) 1 month, 7 days ago

As a programmer, I can honestly say that I am lazy. Forget the menial job of repeating tasks… if it takes me an hour to complete an iteration, I would rather spend 3 hours automating the process. You never know when you might need to do it again, and the click of a button is much more satisfying than an hour of processing data. I know I’m not the only one who feels this way either, otherwise Andy Hunt and Dave Thomas wouldn’t have codified the DRY principle in The Pragmatic Programmer…. Don’t Repeat Yourself. read more...

1 comment |category: |Views: 296

tags: another

67% of ASP.NET websites have serious configuration vulnerabilities(www.troyhunt.com)

submitted by rpk2006rpk2006(81) 1 month, 7 days ago

This is one of those “with great power comes great responsibility” scenarios; ASP.NET is an incredibly powerful environment which lets you do amazing things with ease, but that ease also extends to the configurability and creates the opportunity to leave gaping holes in websites without even noticing it. read more...

add a comment |category: |Views: 203

tags: another

10 illustrated examples of Visual Studio 11(www.troyhunt.com)

submitted by troyhunttroyhunt(831) 1 month, 9 days ago

Visual Studio 11: it’s new and it’s grey but there’s more to it than just a dour monotone veneer. Here are 10 things that make it a step forward from the old. read more...

2 comments |category: |Views: 487

tags: another

Empowering Enums(www.kodefuguru.com)

submitted by KodefuGuruKodefuGuru(2818) 8 months, 6 days ago

When reading Steve Smith’s articles on enums on ASP.NET Alliance and his blog, I couldn’t help but think of a different approach to the issue. I’ve seen, used, and coded the enum class pattern before (and it works well), but we have new language features today to encourage reuse and empower true enums. I am going to show you techniques that won’t require significant changes to your code if you have an existing base of enums. read more...

3 comments |category: |Views: 252

tags: another

Automatic web deployment from TFS build(softscenario.blogspot.com)

submitted by snaitssnaits(197) 8 months, 11 days ago

A walkthrough of how to set up a web application for automatic deployment through TFS 2010 build server. read more...

1 comment |category: |Views: 105

tags: another

C#/.NET Little Wonders: The String Remove() and Replace() Methods(www.blackrabbitcoder.net)

submitted by BlackRabbitCoderBlackRabbitCoder(661) 8 months, 12 days ago

When manipulating string data, many times you want to either remove parts of a String or replace characters in a String. You can do this yourself, of course, by building a new String while manually inspecting each char in turn, but this gets to be a bit expensive and is less maintainable. Instead, there are two methods in the String class, ready to use, that let you do this easily: Remove() and Replace(). read more...

add a comment |category: |Views: 12

tags: another

TFS is destroying your development capacity(www.derekhammer.com)

submitted by genkigenki(69) 8 months, 15 days ago

Author explains some of the perceived shortcomings of TFS and what solutions exist that can eventually replace the functionality of TFS. Basic premise is that TFS is a tool that promises to do everything, but in actuality does it all poorly (and doesn't talk to anything else). read more...

7 comments |category: |Views: 304

tags: another

Setting Up Continuous Deployment In TFS(www.chrissurfleet.co.uk)

submitted by csurfleetcsurfleet(211) 10 months, 6 days ago

Continuous Integration, its sooooo last week. If you’re thinking about getting into CI, you’re behind the curve. Seriously. Fear not though, it’s a simple matter to not only continuously integrate, but to continuously deploy your application. I show you how. read more...

add a comment |category: |Views: 16

tags: another

SimpleVisual studio macro to show branch information in title window.(www.codewrecks.com)

submitted by alkampferalkampfer(1873) 1 year, 1 month ago

In this post I explain how to create a simple visual studio macro to easy working with branches. This macro simply uses a regular expression to show branch information in the Visual Studio title window. read more...

add a comment |category: |Views: 15

tags: another

ASP.NET Web service gotcha(softscenario.blogspot.com)

submitted by snaitssnaits(197) 1 year, 7 months ago

If you try to overload a web method in .NET 3.5 apparently there is no error or warning, or even when you open the test form to invoke the method. The only thing that shows up is a blank page. read more...

add a comment |category: |Views: 3

tags: another

ASP.NET AJAX createDelegate and the JavaScript "this"(www.dennydotnet.com)

submitted by snaitssnaits(197) 2 years ago

Saved me a bunch of headaches on how to refer to this after a callback from a web service scriptmethod. Well worth your two minutes of reading! read more...

add a comment |category: |Views: 19

tags: another

E-mail reporting from Maintenance tasks in SQL Server 2008(softscenario.blogspot.com)

submitted by snaitssnaits(197) 2 years, 5 months ago

How to send e-mails if maintenance tasks fail read more...

add a comment |category: |Views: 12

tags: another

Sending XML input to a web method expecting a string(softscenario.blogspot.com)

submitted by snaitssnaits(197) 2 years, 5 months ago

How to properly send XML input to a web method that expects the parameter to be a string. For example when testing web methods with soap UI. read more...

add a comment |category: |Views: 27

tags: another