kboesel

Stories kicked by kboesel

Two Questions that Most ASP.NET Developers Cannot Answer(rantdriven.com)

submitted by jeffrymorrisjeffrymorris(185) 1 year, 8 months ago

After interviewing approximently 30 applicant's for mid-level to senior level ASP.NET positions, nearly all cannot answer the following two questions: 1. Describe the following access modifiers: a. private b. protected b. internal d. public 2. What is the difference between an ASP.NET Literal control and a Label control read more...

add a comment |category: |Views: 575

tags: another

Windows 7 Tricks and Keyboard Shortcuts (geekswithblogs.net)

submitted by sdormansdorman(1415) 3 years ago

A summary of Windows 7 keyboard shortcuts and tips. read more...

add a comment |category: |Views: 585

tags: another

WPF Model - View - View-Model Screencast(blog.lab49.com)

submitted by markheathmarkheath(1485) 3 years, 6 months ago

A really helpful screencast from Jason Dolinger showing how to use the M-V-VM pattern in a simple WPF application. He starts off with the code that a Windows Forms developer might use and refactors it to M-V-VM. Also includes a demonstration of how it is nicely unit testable utilising Moq and how to use the Unity IoC container. 1 hour 30 mins long. read more...

4 comments |category: |Views: 554

tags: another

Development Tools I Use & Recommend(codezest.com)

submitted by daveschinkeldaveschinkel(1720) 3 years, 7 months ago

Eventually I will get to some technical code Posts. But for now, I'm a bit delayed with some other things at work lately. I will be blogging about Code Generation, OOP, and other topics very soon though. In the meantime, I wanted to share a list of tools I regularly use now or have used in the past as a C# / ASP.NET Engineer listed below: read more...

add a comment |category: |Views: 1026

tags: another

Path to .NET 3.5 Developer Certification(thearchitect.co.uk)

submitted by mjpaladmjpalad(615) 3 years, 8 months ago

If you are trying to figure out the new certification exams for Microsoft Certified Professional Developer (MCPD) or Microsoft Certified Technical Specialist (MCTS) for .NET Framework 3.5 / Visual Studio 2008 then you may be interested in a diagram that I put together to helped me to visualize the path through the required certification exams. read more...

1 comment |category: |Views: 758

tags: another

Seperations of concerns(lostechies.com)

submitted by chrissie1chrissie1(370) 3 years, 10 months ago

This is the 5th and last part in a series on hoow to make a bad application better. Wonderfully explained. There is a lot to learn from this. read more...

add a comment |category: |Views: 358

tags: another

StringBuilder Secrets(dotnetperls.com)

submitted by samdnpsamdnp(980) 3 years, 10 months ago

Article goes beyond the basics and looks at some more detail of StringBuilder in C#, and a benchmark that can help you improve your code that already uses StringBuilder. With graph read more...

3 comments |category: |Views: 669

tags: another

10 reasons why SQL Server 2008 is going to rock(angryhacker.com)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 11 months ago

Just like its predecessor, SQL Server 2008 is taking its sweet time to actually ship. However, unlike its predecessor, it won't just be a "worthwhile upgrade". It will kick ass. Here are the top 10 reasons why. read more...

add a comment |category: |Views: 976

tags: another

Trying out PowerCommands 1.1 for Visual Studio 2008(blogs.microsoft.co.il)

submitted by JemmJemm(9604) 4 years, 1 month ago

Generally, I don't like to install any Visual Studio extensions at all, but I thought I should give this one a chance. I installed PowerCommands 1.1 for Visual Studio 2008, and went to play with the new functionality. Here is what I found as the most useful... read more...

1 comment |category: |Views: 11

tags: another

Do You Really Want to Be a Development Team Leader?(andrewtokeley.net)

submitted by tokestokes(1085) 4 years, 1 month ago

Ask any up and coming developer what they would like to do in the next year or so and you'll invariably hear, "I'd like to become a Development Team Leader". Hopefully most will have actually considered the change of role and be looking for new challenges and ways to contribute more to their chosen profession. However, for some this is an automatic response to a question that is particularly difficult to answer in an industry with no clear career path. For others it's simply a way to move up the pay scale. read more...

add a comment |category: |Views: 29

tags: another

A Set of Useful Extension Methods for DateTime(iridescence.no)

submitted by fredrikfredrik(250) 4 years, 2 months ago

Presenting 11 time-saving (oh, the pun!) extension methods for the DateTime class. read more...

add a comment |category: |Views: 47

tags: another

The One Single Tip to Comment Your Code(itscommonsensestupid.blogspot.com)

submitted by nsoonhuinsoonhui(1810) 4 years, 2 months ago

You've heard about 13 tips to comment your code, but what about the One Single Tip? read more...

add a comment |category: |Views: 9

tags: another

Creating Self Signed SSL Certificates on IIS 6.0 and Win Server 2003(codeforeternity.com)

submitted by xtremebizxtremebiz(575) 4 years, 3 months ago

Step by step tutorial (with screen shots) on creating self signed SSL certificates on IIS 6.0 and Win 2003 development / test servers using the FREE SelfSSL tool which comes with IIS 6.0 Resource Kit Tools. You can even use it to secure your local intranet. read more...

add a comment |category: |Views: 327

tags: another

XmlDocument fluent interface(improve.dk)

submitted by orcaorca(820) 4 years, 3 months ago

A simple fluent interface for creating XmlDocuments & strings. read more...

9 comments |category: |Views: 49

tags: another

What a .NET Interview SHOULD Be!(keepitsimpleprojects.com)

submitted by simplicityiskeysimplicityiskey(650) 4 years, 3 months ago

I wish I had interviews like the one described here. This process would really allow you to show your skills with actions. I think the interviewee benefits from this as well. If they don't like the team they will be working with they can bow out of the rest of the process. read more...

4 comments |category: |Views: 8

tags: another

Embedding ASP.NET Server Variables in Client JavaScript(west-wind.com)

submitted by rstrahlrstrahl(7226) 4 years, 3 months ago

Getting Server Variables embedded into a page and using them from JavaScript code can be a pain. Following Jon Galloway's post a few days ago I thought that maybe a solution that doesn't rely on ASP.NET AJAX and is more generic might be useful to make the task easier and apply much broader scope. The result is an easy to use, generic class that generates a JavaScript object from key value pairs created on the server from static values or dynamic control/object properties. read more...

1 comment |category: |Views: 136

tags: another