70-573 무료 덤프문제 온라인 액세스
| 시험코드: | 70-573 |
| 시험이름: | TS: Office SharePoint Server, Application Development (available in 2010) |
| 인증사: | Microsoft |
| 무료 덤프 문항수: | 150 |
| 업로드 날짜: | 2026-08-31 |
You plan to create a custom approval workflow. The workflow approvers will enter their employee number in the edit task form.
You need to ensure that the onTaskChanged1_Invoked method of the workflow retrieves the value of the employee number.
Which object should you use?
You need to create a Web Part that displays all of the content created by a specific user. You write the following code segment. (Line numbers are included for reference only.)
01 private void keywordQueryExecute(string searchAuthor)
02 {
03 KeywordQuery kRequest = new KeywordQuery(ServerContext.Current);
04
05 kRequest.QueryText = strQuery;
06 ResultTableCollection resultTbls = kRequest.Execute();
07 }
Which code segment should you add at line 04?
You create a workflow named WF1. WF1 is attached to a list named List1.
You need to receive an e-mail notification if WF1 is postponed.
What should you do?
You are creating an application.
You develop a custom control that renders a contextual tab. The control contains the following code segment. (Line numbers are included for reference only.)
01 protected override void OnPreRender(EventArgs e)
02 {
03 SPRibbon curRibbon = SPRibbon.GetCurrent(this.Page);
04
05 curRibbon.MakeContextualGroupInitiallyVisible("SP.Ribbon.ContextualGroup",
string.Empty);06 base.OnPreRender(e);07 }
You need to ensure that when the custom control is rendered, the custom contextual tab appears in the Ribbon.
Which code segment should you add at line 04?