Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TK Login Page</title>
<style>li {
width: 3em;
height: 3em;
text-align: center;
line-height: 3em;
http://devproconnections.com/aspnet/edit-entire-datagrid
http://webdesignerwall.com/demo/scroll-to-top/scrolltotop.html
http://codyhouse.co/gem/back-to-top/
<html>
<head>
<style type="text/css">
.dropdown {
position: relative;
<!DOCTYPE html>
<head>
<link rel="stylesheet" type="text/css" href="cal-heatmap.css">
</head>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="cal-heatmap.min.js"></script>
<script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
http://www.logogarden.com/account/?cID=1&update_ulID=1430258
http://www.logogarden.com/account/file_download.php?type=logo_image&ID=1430258&k=yc66e99yp&file_type=jpg&file_version=web
protected void btnSelect_Click(object sender, EventArgs e)
{
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
http://kenyatips.com/downloads/GridViewProject.zip
http://www.asp.net/web-forms/overview/data-access/enhancing-the-gridview/adding-a-gridview-column-of-checkboxes-cs
http://www.aspdotnet-suresh.com/2010/12/v-behaviorurldefaultvmlo_21.html
see how to add gridview with bootstrap procedure.
dynamic datagrid creation code.......
http://www.mysamplecode.com/2012/04/generate-html-table-using-javascript.html
http://stackoverflow.com/questions/8302166/dynamic-creation-of-table-with-dom
http://www.jqueryscript.net/demo/jQuery-Plugin-To-Convert-JSON-Data-Into-Html-Tables-MounTable/
@rahilsharma
rahilsharma / gif_encoder
Last active August 29, 2015 14:01
gif encoder
//do for repeat no repeats and other things........give good gui.......
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using NGif;
using System.Drawing.Imaging;
Imports System
Imports System.Runtime.InteropServices
Imports CommunicatorAPI
Public Class Form1
Dim comm_rs As New CommunicatorAPI.Messenger
'Dim comm As CommunicatorAPI.IMessengerContacts = New CommunicatorAPI.IMessengerContacts
Sub rs()
Try
If (comm_rs.MyStatus <> MISTATUS.MISTATUS_ONLINE) Then
@rahilsharma
rahilsharma / gist:3836730
Created October 4, 2012 21:55
s34rch 3n91n3 py
import urllib
max_limit=5
def get_page(url):#This function is just to return the webpage contents; the source of the webpage when a url is given.
try:
f = urllib.urlopen(url)
page = f.read()
f.close()
#print page
return page
except: