Skip to content

Instantly share code, notes, and snippets.

View kelumKP's full-sized avatar
🏠
Working from home

Kelum kelumKP

🏠
Working from home
View GitHub Profile
@kelumKP
kelumKP / SampleTable.cs
Created February 28, 2021 08:18
Sample Table Class File
public class SampleTable
{
public int ID { get; set; }
public string Name { get; set; }
}
@kelumKP
kelumKP / web.config.xml
Last active February 28, 2021 07:16
ConnectionStrings
<add name="SQLAuthentication_ConnectionString" connectionString="Data Source=SQL_AUTH_DB_SERVER;Initial Catalog=SQL_AUTH_DB_NAME;Persist Security Info=True;User ID=SQL_AUTH_DB_USER_ID;pwd=SQL_AUTH_DB_USER_PASSWORD;MultipleActiveResultSets=true;" providerName="System.Data.SqlClient" />
<add name="WindowsAuthentication_ConnectionString" connectionString="Data Source=WINDOWS_SQL_AUTH_DB_SERVER;Initial Catalog=WINDOWS_SQL_AUTH_DB_NAME;Persist Security Info=True;User ID=WINDOWS_SQL_AUTH_DB_USER_ID;pwd=WINDOWS_SQL_AUTH_DB_USER_PASSWORD;MultipleActiveResultSets=true;" providerName="System.Data.SqlClient" />
@kelumKP
kelumKP / 0_reuse_code.js
Created August 7, 2017 15:04
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console