본문 바로가기
반응형

ASP.NET103

[개발/C#/ASP.NET] 하드웨어 유일키 생성 하드웨어 유일키 생성 using System; using System.Management; using System.Security.Cryptography; using System.Security; using System.Collections; using System.Text; namespace Security { /// /// Generates a 16 byte Unique Identification code of a computer /// Example: 4876-8DB5-EE85-69D3-FE52-8CF7-395D-2EA9 /// public class FingerPrint { private static string fingerPrint = string.Empty; public static strin.. 2015. 3. 3.
[개발/ASP.NET/C#] 하드웨어 유일키 얻기 2 Contacting a Registration Server to obtain a unique registration key based on unique machine ID Introduction Sometimes in the industry, it is required to collect some unique machine information and send it to a server for the purpose of creating a unique registration key based on the hardware information. This is required in the case when the software requires a per PC registration. Thus we can .. 2015. 3. 3.
[개발/asp] ASP용 이미지 리사이즈 프로그램 DLL과 소스프로그램 ASP용 이미지 리사이즈 프로그램 DLL과 소스프로그램 2015. 3. 3.
[개발/ASP] Creating GridView Columns Dynamically (Part 1) Creating GridView Columns Dynamically (Part 1) http://www.dotnetbips.com/articles/56fadcb9-ee8b-4170-a6ad-cd4f38222bcb.aspxCreating GridView Columns Dynamically (Part 1)IntroductionMany months back I wrote three articles - Creating DataGrid Programmatically, Creating DataGrid Templated Columns Dynamically - Part I and Creating DataGrid Templated Columns Dynamically - Part II. Even today these ar.. 2015. 2. 24.
[개발/ASP] Creating GridView Columns Dynamically (Part 1, 2) 소스코드 Creating GridView Columns Dynamically (Part 1, 2) 소스코드 IntroductionFew months back I wrote article on how to create DataGrid programatically. The article explained how to created a DataGrid with bound columns on the fly. Many readers asked whether we can do similar thing with templated columns. This two part article explains just that. There are actually two ways to create DataGrid templated col.. 2015. 2. 24.
[개발/ASP] Creating GridView Columns Dynamically (Part 2) Creating GridView Columns Dynamically (Part 2) http://www.dotnetbips.com/articles/0b4f8e1c-39e6-4070-abc0-7a970e7553bc.aspxCreating GridView Columns Dynamically (Part 2)IntroductionIn Part 1 you learned to create Bound Fields and Command Fields dynamically. Often your grid layout is beyond the capabilities of in-built column types and you need to use Template Fields. For example, let's say you a.. 2015. 2. 24.
반응형