🔍 Tìm kiếm trên Nosomovo Tech

Danh mục: IT Zone

Code xóa cache Nukeviet

Code xóa cache Nukeviet

Để xóa cache cho website Nukeviet một cách nhanh chóng, chúng ta có thể sử dụng cách sau: Tạo file deletecache.php với…

Public and Free DNS list

Public and Free DNS list

There are public & free DNS list update until march 2018: Provider Primary DNS Server Secondary DNS Server Level 209.244.0.3 209.244.0.4 Verisign…

Nosomovo

Access connection string in C#

//using System.Data.OleDb; string m_ConnectString = “Provider=Microsoft.ACE.OLEDB.12.0; Data Source=file_path.mdb;”; nosomovo

Nosomovo

Mysql connection string in C#

string Connectionstring = “SERVER=” + m_Server + “; PORT=” + m_Port + “;” + ” DATABASE=” + m_Database + “;” + “UID=”…

Nosomovo

Excel connection string in C#

string ConnectionString = “Provider=Microsoft.ACE.OLEDB.12.0; Data Source=” + “filename” + “; Extended Properties=\”Excel 12.0\”;”; Nosomovo

Nosomovo

Sql server connection string in C#

Kết nối bằng quyền Windows: string m_ConnectString = “Data Source=” + “servername” + “;Initial Catalog=” + “databasename” + “;Integrated Security=True;”; Kết nối…

Lệnh cấu hình tài khoản git

Lệnh cấu hình tài khoản git

Để cấu hình tài khoản git sau khi đã cài đặt git vào máy chúng ta dùng 2 lệnh sau: git config…

Nosomovo

Code C# – Upload file to web server

  public class HttpUploadHelper { private HttpUploadHelper() { } public static string Upload(string url, UploadFile[] files, NameValueCollection form) { HttpWebResponse resp =…