Step By Step119 Change the forecolor of an item in a repeater Change the forecolor of an item in a repeater 출처 : http://www.c-sharpcorner.com/blogs/7592/change-the-forecolor-of-an-item-in-a-repeater-based-on-the-s.aspx 2015. 9. 21. [Add new row to GridView] 참조 링크 : http://www.aspsnippets.com/Articles/Add-new-Row-to-GridView-on-Button-Click-in-ASPNet.aspx 2015. 9. 21. [C#] Repeater 안에서 Data Value 값에 따른 Color 넣기!! 오늘은 Repeater안에서 색 집어넣기. 예를 들어 바인딩 해온 값중에 대기라는 값이면 '빨강', 출발이면 '검정' 이런식으로 해주고 싶다면 다음과 같이 해주면 된다 *********************************************************************** 그리고 해당 함수는 cs에서 선언. public string Car_Stats(object obj) { string color = "white"; if (!string.IsNullOrEmpty(obj.ToString())) { string status = obj.ToString(); switch (status) { case "대기": color = "#99CCFF"; break; case "2": color = .. 2015. 8. 28. [MS-SQL] DB 암호화 알고리즘 사용법 (AES 알고리즘) 음...MS-SQL에서 제공하는 암호화 알고리즘. 오랫만에 다시 할려니 기억이..으하하하 --****************************************** -- 기존 키 삭제 --****************************************** drop symmetric key keyTest drop certificate cert4EncKey drop master key --****************************************** -- Master Key 생성,백업 --****************************************** create master key encryption by password = 'testpassword' backup .. 2015. 7. 17. 이전 1 ··· 18 19 20 21 22 23 24 ··· 30 다음