LỆNH CẦN BIẾT
1. câu lệnh set và gọi link help web
// Some code
// set đường dẫn. copy paste đường dẫn vào ""
myform.LinkHelp = "https://huongdanketoan.dtechvn.com/";
// gọi web theo đường dẫn phía trên
myform.Help();
//return;
#region: Tạo code gọi link
string sLink = "https://0100108818.dtechvn.com/phan-mem-kho/po/giao-dien-xem-truoc";
myform.LinkHelp = sLink;
myform.Help();
#endregion: Tạo code gọi link2. Chuyển xâu format thành list và remove giá trị trống
// xau = ",1,2,3,,," => [1,2,3]
// chuyển thành list và remove giá trị trống nếu có
string sChuoi = "1,2,3,,,,";
List<string> lstChuoi = sChuoi.Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries).ToList();3. Câu lệnh sql gọi từ server1 sang server2
4. Tạo form nhập biến dữ liệu
Last updated