Behind Code에서 Master Page의 Title 변경 하는 방법에 대해 알아 보겠습니다.
// Master Page에 등록되어있는 PlaceHolder 명과 설정할 Title 값을 매개변수로 입력 합니다.
private void SetTitle(string placeHolderName, string title){
try
{
// 현재 페이지의 MasterPage의 PlaceHolder을 가져옵니다.
ContentPlaceHolder contentPlaceHolder = (ContentPlaceHolder)Page.Master.FindControl(placeHolderName);contentPlaceHolder.Controls.Clear();
LiteralControl literalControl = new LiteralControl();
literalControl.Text = title;
// Title을 등록 한 후 가져온 PlaceHolder Control에 입력 합니다.
contentPlaceHolder.Controls.Add(literalControl);}
catch {
}
}
함수 호출은 아래와 같이!!
SetTitle("PlaceHolderPageTitle", "타이틀수정!");
'Programming > Sharepoint' 카테고리의 다른 글
[Sharepoint] SPListItem Update 종류 (0) | 2013.11.12 |
---|---|
[SP2013 Error Fix] Microsoft.Office.Server.UserProfiles.LMTRepopulationJob (0) | 2013.07.17 |
[Sharepoint2013][펌] SP 2013 아티클 모음 (0) | 2013.04.26 |
[Sharepoint 오류 해결] Sharepoint 시스템 오류 (event ID : 8306) 가 있습니다. (0) | 2013.01.15 |
[Sharepoint] C# Web에서 로컬 서버 구조(WebApplication, SPSite, SpWeb, SPList, SpItem) 가져오기 (0) | 2013.01.03 |
[Sharepoint] C# Console에서 로컬 서버 구조(WebApplication, SPSite, SpWeb, SPList, SpItem) 가져오기 (0) | 2013.01.03 |
[Sharepoint 2013] Sharepoint 2013 Designer (0) | 2012.12.20 |
[VHD-Contoso] 2010 Information Worker Demonstration and Evaluation Virtual Machine (SP1) (0) | 2012.10.26 |
SharePoint 2010 기본 검색 웹 파트 결과 페이지 수정하기 (0) | 2012.02.03 |
SharePoint 2010 패키지파일 수동 배포 하기 (0) | 2012.02.03 |