Sunday, February 28, 2010

10 UI Design fundamental

came across a good article on UI design

article on 12 useful technique for good UI Design

article on 11 great UI design resources

Thursday, February 25, 2010

Test Driven Development

Checkout this article to learn how to use VS Test Project to apply test driven development methology in your project. This article highlights the details on data driven test case

One point to note is that, it is possible to keep your test data in database, which is very useful in doing testing, instead of coding on the logic for your test data, you can leverage on the framework.

[TestMethod]
[Owner("Mark Michaelis")]
[TestProperty("TestCategory", "Developer"),
DataSource("System.Data.SqlClient",
"Data Source=.\\SQLEXPRESS;AttachDbFilename=\"";Integrated Security=True",
"LogonInfoTest",
DataAccessMethod.Sequential)]
public void ChangePasswordTest()

Sunday, February 7, 2010

Excellent Linq Example

This webcast describe the linq concept clearly, it is very useful for beginner.

After you see this webcast, it is very likely you can unleash the power of LINQ-to-sql

Saturday, February 6, 2010

Good example to describe delegate

Refer to this webcast from jennifer to have a better understanding on delegate

it is useful when you want to trigger method B or method C from method A, you can consider to use delegate to represent method B, C, see this video to find out more.

Wednesday, February 3, 2010

Full-featured customer portal

Looking for how to build a full feature portal for scratch. Check out this video from asp.net.

It shows you how to do C.R.U.D. for a table in sql and datagrid using sqldatasource, and also the login control.