본문 바로가기

반응형

Story/asp

SQL Server 암호화 알고리즘 정리 - 양방향 : 암호화, 복호화가 가능한 것. - 단방향 : 복호화가 불가능하고 암호화만 가능한 것. 1. 양방향 1) SQL Server 2005 암호화 알고리즘 http://technet.microsoft.com/ko-kr/library/ms345262(SQL.90).aspx DES, Triple DES, RC2, RC4, 128비트 RC4, DESX, 128비트 AES, 192비트 AES, 256비트 AES 2) SQL Server 2008 암호화 알고리즘 http://technet.microsoft.com/ko-kr/library/ms345262(SQL.100).aspx DES, Triple DES, TRIPLE_DES_3KEY, RC2, RC4, 128비트 RC4, DESX, 128비트 AES, .. 더보기
asp file download 파일이 존재하는지 여부를 먼저 체크해야함.Dim objFSO Set objFSO = Server.CreateObject("Scripting.FileSystemObject") If objFSO.FileExists ("yourfile.txt") Then Response.Write "File exists" Else Response.Write "File does not exist" End If http://www.plus2net.com/asp-tutorial/file-exist.php 여기에 있는내용을 기록해 두겠다. Determining the existence of file or directory by using FileSystemObject in ASPWe can check whether file of f.. 더보기
Mssql To Xml Mssql To Xml 출처 : http://bytes.com/topic/asp-classic/answers/728740-mssql-xml 더보기
asp c# .net 에서 mysql password 값을 만들기 mysql 4.1 이하 버전용 [OLD_PASSWORD] public static string mysql_old_password(string sPassword) { UInt32[] result = new UInt32[2]; bool bDebug = false; UInt32 nr = (UInt32)1345345333, add = (UInt32)7, nr2 = (UInt32)0x12345671; UInt32 tmp; char [] password = sPassword.ToCharArray(); int i; for (i = 0; i http://stackoverflow.com/questions/868482/simulating-mysqls-password-encryption-using-net-or-ms-sql .. 더보기
asp 로 rss feed (reader) 구현하기 javascript 로만 구현해 보려 했으나 같은 도메인이 아니면 권한이 문제가 되서 직접 가져올수가 없다 다른곳에서 설명한 방법들도 내용을 보면 proxy 파일을 하나 만들어서 이 문제를 해결하고있다. 결국 서버쪽에서 해결해야 하는 상황이라 찾던중 이런 방법을 찾았다. Here is the output, with content provided by the RSS Feed located at: Ouput Style 1Ouput Style 2Ouput Style 3 출처 http://www.ticketcity.com/our-rss-feeds.html http://www.bustercollings.com/source-code-samples/rss-asp-classic-source-code-example.asp 더보기
asp 쿠키(Cookies) 사용 참고내용 http://support.microsoft.com/kb/302390/ko 더보기
asp 특정 아이피(ip)일때 처리 작업을 하다보면 남들은 보이지 않게 하고 특정 아이피에서만 확인해야 할 경우가 있다. 그때 처리방법이다. if request.ServerVariables("REMOTE_ADDR") = "xxx.xxx.xxx.xxx" then ' 특정아이피일때만 처리할 내용end if 더보기
asp 에서 " 큰따옴표 사용하기 asp 에서 " 를 문자로서 맘대로 사용할수가 없다 " 를 사용하는 방법은 다음과 같다 "" 와 같이 큰따옴표를 두번 겹쳐서 사용하는것이다. tmp = "링크" 또는 %>" 더보기
mssql 인젝션 -- 검사루틴 DECLARE @T varchar(255), @C varchar(255); DECLARE Table_Cursor CURSOR FOR SELECT a.name, b.name FROM sysobjects a, syscolumns b WHERE a.id = b.id AND a.xtype = 'u' AND (b.xtype = 99 OR b.xtype = 35 OR b.xtype = 231 OR b.xtype = 167); OPEN Table_Cursor; FETCH NEXT FROM Table_Cursor INTO @T, @C; WHILE (@@FETCH_STATUS = 0) BEGIN EXEC( 'select ['+@C+'] from ['+@T+'] where ['+@C+'] like ''%''.. 더보기
ASP 문자열함수 + ASP 디버깅함수 출 처: taeyo.pe.kr'=================================================================== '== 설명 : 문장을 해당 자릿수만큼 이 들어간 문장으로 변환 '== 이름 : MakeBr(Str,Pos) '== 변수 : Str(String),Pos(Int) '== 반환 : String '=================================================================== Function MakeBr(Str,Pos) Dim StrLen, TmpStr, i, Midcnt, Start, Surplus StrLen = len(Str) If (StrLen Mod Pos) = 0 then MidCnt = Fix(StrLen.. 더보기

반응형