본문 바로가기

C# /WindowsForm35

[C#] WebBrowser Control 로 인쇄 시에 Footer ,Header 제거 테스트 출처 : Need advice on removing header/footer during HTML printing | Visual Studio.Net Help Community (dotnet.community) Need advice on removing header/footer during HTML printing I have the IE web control in my app - and Im using the EXECWB command to print the current page. However, Im trying to remove the header / footer that is automatically placed on the page. The only real way Ive found to do.. 2022. 4. 13.
[C#] HttpWebRequest를 이용한 Multipart/form-data 파일 업로드 예제 Header 부분의 Content-Disposition: form-data ;name="ID" ;filename="파일명" ; Content-Type이 octet-stream 으로 설정되어야 파일이 정상적으로 업로드 처리 되었습니다. 테스트 시에 [multipart/form-data] 로 설정시에 WAS에 파일이 업로드 된 후 응답이 없이 timeout 이 발생하는 현상이 자주 발생 하였습니다.. public object lockObj = new object(); public static string FileUploadRequestPost(string url,string filePath,Dictionary parameters, ref CookieContainer cookie) { lock (lockObj.. 2020. 11. 16.
[C#] JavaScriptSerializer 를 이용하여 json string to object로 파싱 예제 아래와 같은 sample string 을 리턴 받아 , array 개체로 캐스팅 되고(Dynamic 키워드 사용) , Row마다 Dictionary로 파싱하는 예제 입니다. [{"searchCondition":"A","searchKeyword":"A"}, {"searchCondition":"B","searchKeyword":"B"}, {"searchCondition":"C","searchKeyword":"C"}] JavaScriptSerializer 는 참조의 System.web.Extension을 참조하면 찾을 수 있습니다. // JavaScriptSerializer var jss = new JavaScriptSerializer(); var table = jss.Deserialize(jSonValue).. 2020. 7. 12.
[C#] 64BIT OS에서 32bit COM,ACTIVEX 참조 하기 32bit ocx의 경우 c:₩windows₩system32₩regsvr32.exe로 객체 등록시 비쥬얼스튜디오 참조 목록에서는 등록한 모듈이 나오지 않았습니다. 찾다보니 c.₩windows₩SysWow64₩regsvr32.exe 명령어로 32bit ocx를 등록한 후 비쥬얼 스튜디오 참조 목록 확인시 등록한 라이브러리를 확인할 수 있었습니다. 2017. 11. 28.