bradsjm

Stories kicked by bradsjm

Enterprise Library 4.0 - Just Released(dotnethitman.spaces.live.com)

submitted by misbaharefinmisbaharefin(845) 4 years ago

Congratulations to the Enterprise Library Team for their release of Enterprise Library 4.0. A few enhancements and bug fixes in this release, but most importantly it comes with Unity IoC Integration. read more...

add a comment |category: |Views: 26

tags: another

Implementing Generic Caching(objectreference.net)

submitted by Vort3XVort3X(1335) 4 years ago

I develop for a large, high-availability website, with hundreds of thousands of daily users. As such, we need to cache a lot of data in our web-server memory (which is cheap) to save numerous hits to our main database cluster (which is very expensive). I would imagine the desire to improve performance by saving on database hits is common across many web applications – and caching frequently used data is often seen as one of the best ways to solve this problem. read more...

6 comments |category: |Views: 232

tags: another

Agile Architecture: Strategies for Scaling Agile Development(agilemodeling.com)

submitted by bradygasterbradygaster(4897) 4 years ago

Contrary to popular belief, architecture is an important aspect of agile software development efforts, just like traditional efforts, and is a critical part of scaling agile approaches to meet the real-world needs of modern organizations. But, agilists approach architecture a bit differently than traditionalists do. read more...

add a comment |category: |Views: 3

tags: another

Some useful SQL for handling hiearchical/recursive queries(geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 5 years, 9 months ago

I used several dodgy ways of handling hierarchical structures in my apps before coming across this handy snippet. read more...

1 comment |category: |Views: 4

tags: another

Cool (and Free) Threading .NET 2.0 E-Book (coolthingoftheday.blogspot.com)

submitted by marcosmarcos(2779) 5 years, 9 months ago

"This is a very cool threading online reference and freely downloadable e-book (PDF). Using C# for its examples, in 76 pages it covers basic synchronization, locking, BackgroundWorker, async delegates and more." Via: http://coolthingoftheday.blogspot.com read more...

1 comment |category: |Views: 58

tags: another

[Tools] Switched to Notepad++, here's my C# syntax file(weblogs.asp.net)

submitted by dalzieldalziel(6230) 5 years, 9 months ago

Jon Galloway on Notepad++ and all it's coolness, with screenshots! read more...

add a comment |category: |Views: 192

tags: another

Securing ViewState efficiently and simple(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 5 years, 9 months ago

The first thing we need to do is to add encryption to the ViewState. This is done by editing the web.config only. To further enhance the security ASP.NET can add another level of encryption based on the actual user. read more...

add a comment |category: |Views: 5

tags: another

FileHelpers 1.6.0 Released(filehelpers.sourceforge.net)

submitted by marcosmarcos(2779) 5 years, 9 months ago

A lot of new features and the most important: The RunTime Records are ready !!! The FileHelpers are an easy to use library to import/export data from fixed length or delimited records in files, strings or streams. read more...

1 comment |category: |Views: 6

tags: another

Linux + Subversion + Trac in a VmWare Image = Perfect Agile World(vmware.com)

submitted by marcosmarcos(2779) 5 years, 10 months ago

I love Trac as SCM because it integrates directly with the Subversion repository and full support the agile methodology. Now thanks to the guys of VmWare you can download a the Free VmWare player http://www.vmware.com/download/player/ and run your linux box inside windows for free. And of course you can move it from machine to machine in your pen drive =) the best part, isn't ? read more...

1 comment |category: |Views: 596

tags: another

Virtual Earth v3 Mapping Server Control for ASP.NET(pietschsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 5 years, 10 months ago

I just uploaded a new release of my ASP.NET 2.0 Virtual Earth v3 mapping Server Control. The download contains a Visual Studio 2005 solution that contains the source code for the server control dll and a sample website that uses the control. Enjoy! read more...

1 comment |category: |Views: 28

tags: another

C#: Generate an image of a web page(dotnetjunkies.com)

submitted by crpietschmanncrpietschmann(11.3k) 5 years, 10 months ago

I have some WinForms applications that would benefit from having images and thumbnails (sometimes called thumbshots) of internet web pages and so I decided yesterday to have a look at how to approach this. read more...

add a comment |category: |Views: 12

tags: another

ASP.NET 2.0 UrlRewriting Fix (scottwater.com)

submitted by rjdudleyrjdudley(1465) 5 years, 10 months ago

There is a bug in the URL Rewriting engine of ASP.NET 2.0. While not specific to Community Server, it maniftested itself more so in CS communities. Here, Scott Watermasysk presents a workaround. Links to the original problem are included. read more...

add a comment |category: |Views: 11

tags: another

SharpSSH - A Secure Shell (SSH) library for .NET(tamirgal.com)

submitted by marcosmarcos(2779) 5 years, 10 months ago

This is a pure .NET implementation of the SSH2 client protocol suite. The purpose of this project is to provide an easy API for reading/writing data to/from SSH channels and perform SFTP/SCP file transfers for .NET applications. read more...

add a comment |category: |Views: 387

tags: another

BusyBoxDotNet | Enhancing ASP.NET user experience(busybox.sourceforge.net)

submitted by simonebsimoneb(5450) 5 years, 10 months ago

An ASP.NET please wait dialog read more...

add a comment |category: |Views: 60

tags: another

Tip/Trick: Using Server Side Comments with ASP.NET 2.0(weblogs.asp.net)

submitted by MarthaBassMarthaBass(490) 5 years, 10 months ago

Scott Guthrie shares another trick with us, this time Server side comments. I had no idea they existed. "ASP.NET supports a little known feature called “server-side comments” that you can use to completely disable code/controls/html in a page. Server-side comments in ASP.NET are delimited using a <%-- --%> syntax." read more...

2 comments |category: |Views: 9

tags: another

URL parsing and manipulation in .NET(damieng.com)

submitted by DamienGDamienG(1405) 5 years, 10 months ago

While .NET has a couple of URI classes they're pretty useless. They don't decode the various parts and you can't manipulate them either. Many projects I've seen (Subtext included) just try and manipulate them via strings which varying degrees of success. Here's a pure C# .NET URL decoder that uses a regex I developed for performance based on a VBScript class I developed a while back. read more...

2 comments |category: |Views: 639

tags: another