Stories recently tagged with 'Geral'

What is your strategy for becoming a better developer?(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 4 months ago

Let me know what your best habits, tricks, info sources, etc.... that you have which make you a better developer. And the top three are going to get a copy of "The Pragmatic Programmer" in order to make themselves a better developer. read more...

add a comment |category: |Views: 470

tags: another

Why Every Good Developer needs to Know how to Mock(itscommonsensestupid.blogspot.com)

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

While unit testing is generally considered a good practice ( even among those who don't do unit tests), mocking doesn't seem to carry the same aura. There are a lot of arguments saying why mocking is bad , how it kills testability etc. But in my day-to-day job, as well as in my personal projects, I found mocking is definitely indispensable. read more...

1 comment |category: |Views: 557

tags: another

Sending Email in a Development Environment without an SMTP Server(blog.donnfelker.com)

submitted by BognitBognit(2110) 3 years, 5 months ago

Very handy... I'm forever looking this stuff up :-| read more...

11 comments |category: |Views: 1113

tags: another

Creating a Custom Validation Control in ASP.NET (dotnetcurry.com)

submitted by vivekamarvivekamar(5940) 3 years, 5 months ago

The BaseValidator class defines the basic implementation needed for all Validation controls. There are 6 Validation Controls included in the ASP.NET 2.0 and ASP.NET 3.5 framework which validate controls to prevent the users from entering wrong data. However, there are a few shortcomings in these controls. The good part is that ASP.NET provides the framework to create new validation controls. If you would like to create your own validation control, you can do so by deriving a new control from the BaseValidator abstract class. In this article, we will explore how to create a custom validation control in ASP.NET and provide both Server and Client Side Validation for the same. read more...

2 comments |category: |Views: 271

tags: another