Feeds:
Posts
Comments

Archive for January 16th, 2008

extending Enum

Today I m faced a problem when I want to re-use Enum without major change on the based code.
Here the simple example,
I got a drop down list which bind Enum, here the sample code:
public enum Gender
{
[Description("I m a Male")] M,
[Description("I m a Female")] F
}
if you just bind the Enum, your dropdownlist will simply show you [...]

Read Full Post »

Finally I got a chance to check out DNN Skin Control (no choice, my task is to fulfill customer requirement),
When I m want to implement SSO in DNN, I got to customise the “User” control, disable the hyperlink allow them access the user profile page to do some funny stuff.
If you want to know more about Skin Control, here the directory path.  
DNN’s Skin Control [...]

Read Full Post »