개발58 IIS Header Server, x-aspnet-version, x-powered-by 제거하기 우선 IIS Rewrite를 설치한다.https://www.iis.net/downloads/microsoft/url-rewrite IIS URL Rewrite는 Microsoft의 IIS(Internet Information Services) 웹 서버에서 URL 재작성 기능을 제공하는 모듈입니다. 이 기능을 사용하면 웹 애플리케이션에서 요청된 URL을 동적으로 변경하거나 리다이렉션할 수 있습니다. 이를 통해 URL을 더 읽기 쉽게 만들거나, SEO(검색 엔진 최적화)를 위해 URL 구조를 최적화할 수 있습니다.IIS URL Rewrite의 주요 기능URL 재작성: 사용자가 요청한 URL을 서버 내부적으로 다른 URL로 변경할 수 있습니다. 예를 들어, http://example.com/products/1.. 2022. 1. 24. C# parse xml pretty string XML 을 파싱하고, 보기 좋게 세팅하는 코드입니다. public static string PrintXML(string inputXml) { XmlDocument document = new XmlDocument(); document.Load(new StringReader(inputXml)); StringBuilder builder = new StringBuilder(); using (XmlTextWriter writer = new XmlTextWriter(new StringWriter(builder))) { writer.Formatting = Formatting.Indented; document.Save(writer); } return builder.ToString(); } 2022. 1. 20. Javascript C# String.Format 메서드와 동일한 기능 // C# String.Format 메서드와 동일하게 동작시키기 위한 함수 String.format = function () { // The string containing the format items (e.g. "{0}") // will and always has to be the first argument. var theString = arguments[0]; // start with the second argument (i = 1) for (var i = 1; i 2022. 1. 18. jQuery selector like 검색 jQuery 셀렉터 like 검색은 3종류( ^, *, $ )가 있다.// 첫 문자가 같은 문자열// SQL의 where class like 'search%'$("[class^='search']");$("div[class^='search']");// contains 와 같은 기능// SQL의 where class like '%search%'$("[class*='search']");$("div[class*='search']");// 끝 문자가 같은 문자열// SQL의 where class like '%search'$("[class$='search']");$("div[class$='search']"); 2022. 1. 17. 이전 1 ··· 6 7 8 9 10 11 12 ··· 15 다음 반응형