본문 바로가기
반응형

개발언어347

sql 튜닝가이드 sql 튜닝가이드 2008. 3. 28.
rewritepath 2008/03/24 - [개발언어/ASP.NET] - RewritePathhttp://msdn2.microsoft.com/en-us/library/ms972974.aspx관련  msdn이다 URL Rewriting in ASP.NET .vb, .cs, .cpp, .nu{ display:none;}.nu{ display:inline;}ASP.NET Technical ArticlesURL Rewriting in ASP.NET  Scott Mitchell4GuysFromRolla.comMarch 2004Applies to:   Microsoft® ASP.NETSummary: Examines how to perform dynamic URL rewriting with Microsoft ASP.NET. URL .. 2008. 3. 24.
RewritePath url mapping 로는 무언가 부족하다. http://csharpaspnet.blogspot.com/2007/08/simplify-urls-url-redirect.html codeproject에 가면 rewritepath에 관한게 나온다. http://www.codeproject.com/KB/aspnet/urlrewriter.aspx 엉뚱한 페이지를 불렀을때 특정페이지로 rewrite 해주는 거 같다. URL Rewriting with ASP.NET 관련글이다. Download source - 8 Kb Introduction One of the most popular extensions to the Apache webserver has been mod_rewrite - a filter which re.. 2008. 3. 24.
항상 위에 표시되는 폼을 만드는 방법 아주 간단하다. 폼이름과 모듈을 추가해서 코드만 넣으면 가능하다 나의 경우 버튼을 하나 만들고 클릭시 아래 코드를 넣었다. Private Sub SetTopWindow_Click() '// 항상위 설정 Dim lR As Long If SetTopWindow.Caption = "항상위" Then SetTopWindow.Caption = "일반폼" lR = SetTopMostWindow(funcmngX.hwnd, False) Else SetTopWindow.Caption = "항상위" lR = SetTopMostWindow(funcmngX.hwnd, True) End If End Sub 항상위로 설정할 폼이름은 funcmngX 이다. 클릭시 버튼의 Caption이 항상위이면 일반폼으로 글자를 설정하고 Set.. 2008. 3. 21.
반응형