Notice
Recent Posts
Recent Comments
Link
목록HttpUtility (1)
투케이2K
62. (C#/NET) [Mac Os] [문법] HttpUtility 사용해 URL Encode , Decode 인코딩 및 디코딩 수행
[개발 환경 설정] 개발 언어 : C# / NET [소스 코드] using System; using System.Collections; using System.Data; using System.Diagnostics.Tracing; using System.Text; using System.Web; namespace testProject { // [프로그램 동작 클래스] class Program { static void Main(string[] args){ // [변수 선언 실시] string str = "?name=twok&age=30"; // [url 인코딩 수행] string encodeData = HttpUtility.UrlEncode(str); // [url 디코딩 수행] string dec..
C샵 (NET)
2024. 3. 16. 10:26