This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Guncel BIN LISTESI | |
twitter : http://twitter.com/tserpico | |
*/ | |
SET FOREIGN_KEY_CHECKS=0; | |
-- ---------------------------- | |
-- Table structure for `binlist` | |
-- ---------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<button class="active btn" data-filter="box">Show All</button> | |
<button class="btn" data-filter="a">Show A</button> | |
<button class="btn" data-filter="b">Show B</button> | |
<button class="btn" data-filter="c">Show C</button> | |
<button class="btn" data-filter="d">Show D</button> | |
<div class="spacer"></div> | |
<div id="parent"> | |
<div class="box a b">A & B</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CULTURE SPEC.CULTURE ENGLISH NAME | |
-------------------------------------------------------------- | |
Invariant Language (Invariant Country) | |
af af-ZA Afrikaans | |
af-ZA af-ZA Afrikaans (South Africa) | |
ar ar-SA Arabic | |
ar-AE ar-AE Arabic (U.A.E.) | |
ar-BH ar-BH Arabic (Bahrain) | |
ar-DZ ar-DZ Arabic (Algeria) | |
ar-EG ar-EG Arabic (Egypt) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SET NAMES utf8; | |
DROP TABLE IF EXISTS `cc_bins`; | |
CREATE TABLE `cc_bins` ( | |
`id` int(10) unsigned NOT NULL AUTO_INCREMENT, | |
`bank_code` int(11) NOT NULL, | |
`bank_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, | |
`bin_number` int(11) NOT NULL, | |
`card_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input{ | |
width: 50%; | |
height: 35px; | |
padding: 5px; | |
margin: 5px; | |
} | |
.red{ | |
border: 1px #D92124 solid; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//BundleConfig classın genel yapısı bu şekilde olması gerekiyor. | |
public class BundleConfig | |
{ | |
public static void RegisterBundles(BundleCollection bundles) | |
{ | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Burası Önemli -> referans eklenmesi gerekir. | |
@using System.Web.Optimization; | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Bundle Örnek </title> | |
@Styles.Render("~/bundles/Css") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Text; | |
using System.Threading; | |
namespace Sample02_Wcf_Check_App | |
{ | |
class Program |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using System.Web.Mvc; | |
namespace Sample05_TincymceSample.Controllers | |
{ | |
public class HomeController : Controller | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Security; | |
namespace Sample07_SecureString | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
SecureString secString = new SecureString(); |
OlderNewer