public static string FormatProperCase(string str)
{
CultureInfo cultureInfo = new CultureInfo("vi-VN");
TextInfo textInfo = cultureInfo.TextInfo;
str = textInfo.ToLower(str);
// Replace multiple white space to 1 white space
str = System.Text.RegularExpressions.Regex.Replace(str, @"\s{2,}", " ");
//Upcase like Title
return textInfo.ToTitleCase(str);
}
7.12.11
4.10.11
Tạo key
Visual Studio Command Prompt
makecert -r -pe -a sha1 -n "CN=KeyName" -b 01/01/2000 -e 01/01/2099 -eku 1.3.6.1.5.5.7.3.3 -ss My
makecert -r -pe -a sha1 -n "CN=KeyName" -b 01/01/2000 -e 01/01/2099 -eku 1.3.6.1.5.5.7.3.3 -ss My
24.3.11
Row footer trong Xtragrid
1- Gridview/OptionView: ShowFooter = true
2- Columns/SummaryItem: Xác lập displayformat, summaryType
2- Columns/SummaryItem: Xác lập displayformat, summaryType