본문 바로가기
반응형

개발언어347

C# 에서 MSSQL Script 실행하기 C# 에서 MSSQL Script 실행하기 간단한 방법이 있지만, 프로시저의 경우 실행시 오류가 발생한다. How do I execute a large SQL script (with GO commands) from c#? http://stackoverflow.com/questions/40814/how-do-i-execute-a-large-sql-script-with-go-commands-from-c How do I execute a large SQL script (with GO commands) from c#?의 소스를 조금 변경했다. 실제로 MSSQL에 줄바꿈으로 들어 갈때는 "\r\n"을 넣어 주면 보기 좋게 프로시저의 줄바꿈 처리가 된다. char(10) + char(13)이라고 누가 인터넷에 적었.. 2013. 12. 20.
Sharepoint 쉐어포인트 성명에 링크 없애기 Jquery/Javascript Well, if you need remove links to user profiles, you can iterate all td-elements with class ms-vb-user using jQuery each function and remove a elements. Here is a little script: $(document).ready(function() { $(".ms-vb-user a").each(function() { var text = $(this).text(); var span = document.createElement("span"); var user = document.createTextNode(text); span.appendChild(user); var parent = $(t.. 2013. 11. 27.
Sharepoint 데이터보기 안될때 : You cannot view a list in Datasheet view after you install the 64-bit version of Office 2010 Sharepoint 데이터보기 안될때 : You cannot view a list in Datasheet view after you install the 64-bit version of Office 2010 오피스가 설치되어 있으면 보통 보이기는 하지만 쉐어포인트에서 데이터보기를 할때 시트가 안나올때가 있다. 이럴때 설치하면 된다. You cannot view a list in Datasheet view after you install the 64-bit version of Office 2010 64비트 버전의 Office 2010을 설치한 후에 데이터시트 보기에서 목록을 볼 수 없음 설치 파일 : http://support.microsoft.com/kb/2266203/ko 방법 1회사에서 64비트 버전.. 2013. 8. 20.
clientContext 의 DefaultDisplayFormUrl 속성을 로드하기 The property or field ‘DefaultDisplayFormUrl’ has not been initialized. It has not been requested or the request has not been executed. It may need to be explicitly requested. Posted by h0psing on January 14, 2013 “The property or field ‘DefaultDisplayFormUrl’ has not been initialized. It has not been requested or the request has not been executed. It may need to be explicitly requested.” client.. 2013. 4. 23.
반응형