Hướng dẫn Simple CRM
Hôm nay mình hướng dẫn các bạn sử dụng Simple (Quản lý khách hàng của mình)
Đăng Nhập
(user/pass: admin/admin)
vào...
Recent Post Recent Post
C# Loại bỏ những ký tự lạ để làm URL cho site - the remove illegal characters
// using System.Web;
public static string RemoveIllegalCharacters(string...
C# Kiểm tra giá trị ipv 6 - validates an ipv6 address
// using System.Net
public static bool IsIpV6AddressValid(string address)
{
...
Kiểm tra giá trị IPv 4 - validates an IPv4 address
private static readonly Regex validIpV4AddressRegex = new Regex
(@"^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$",...
kiểm tra giá trị email - validates an email address
private static readonly Regex emailRegex = new Regex(
@"^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$",...
Hàm tạo mật khẩu ngẩu nhiên - funtion random password
public static string RandomPassword(int number)
{
var chars = "abcdefghijklmnopqrstuvwxyz1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ".ToCharArray();
...
Hàm Get sudomain in trong URL - The URL to get the sub domain from
public static string GetSubDomain(Uri url)
{
...
Lấy danh sách URL theo kiểu file trong html - A list of Uri in HTML
public List<Uri> FindLinks(string type, string html)
{
...
Hàm chuyển đổi kiểm dữ liệu sang JSON - Converts an object to its JSON representation
public string ConvertToJson (object obj)
{
return...
Hàm loại bỏ dấu trong chuổi - the string with the diacritics removed
public string RemovDicritics (string newcustomer)
{
var...
ASPxTreeList trong dvexpress sử dụng Entity Framework
Mình hướng dẫn các bạn tìm hiểu ở mức cơ bản để có thể sử dụng Tree List.Trước hết các bạn...
ASPxGridView trong Devexpress phần 3
Tìm hiều Grid Editing:
Grid Editing là phần quan trọng nhất của ASPxGridView vì nó chỉnh thêm hoặc chỉnh...
Đăng ký:
Bài đăng (Atom)