분류 전체보기590 GetNamedPermissionSet /// /// Get a named permission set from the security policy /// /// Name of the permission set to retrieve /// If name is null or empty /// /// The intersection of permission sets with the given name from all policy /// levels, or an empty set if the name is not found /// public static PermissionSet GetNamedPermissionSet(string name) { if(String.IsNullOrEmpty(name)) throw new ArgumentException(".. 2009. 4. 10. 최근 생성된 ID 값 가져오기 1. IDENT_CURRENT 는 임의의 세션과 범위에 있는 특정 테이블에 대해 생성된 마지막 ID 값을 반환 select IDENT_CURRENT('table_name') 2. @@IDENTITY 는 전체범위에 걸쳐 현재 세션에 있는 임의의 테이블에 대해 마지막 생성된 ID 값 반환 select @@IDENTITY 3. SCOPE_IDENTITY 는 현재 세션과 현재 범위에 있는 임의의 테이블에 대해 만들어진 마지막 ID 값 반환 select SCOPE_IDENTITY() 2009. 4. 6. 팝업창에서 부모창으로 데이타 전달 부모창에서 팝업을 연다. ClientScript.RegisterStartupScript(this.GetType(), "Popup", ""); 부모창의 스크립트 추가 팝업에서 데이타 넘기기 ClientScript.RegisterStartupScript(this.GetType(), "Popup", ""); 2009. 4. 3. 모든 컨트롤 찾기 ArrayList arrList = new ArrayList(); getFindControls(this.Page.Controls, ref arrList); for (int i = 0; i 0.. 2009. 4. 2. 이전 1 ··· 55 56 57 58 59 60 61 ··· 148 다음