70-573 무료 덤프문제 온라인 액세스
시험코드: | 70-573 |
시험이름: | TS: Office SharePoint Server, Application Development (available in 2010) |
인증사: | Microsoft |
무료 덤프 문항수: | 150 |
업로드 날짜: | 2025-08-21 |
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 have a SharePoint site that contains 10 lists.
You need to prevent a list named List1 from appearing on the Quick Launch navigation bar.
What should you configure?
You are creating an event receiver. The event receiver will have a field named Title and a field named Priority.
You write the following code segment for the event receiver. (Line numbers are included for reference only.)
01 public override void ItemUpdating(SPItemEventProperties prop)
02 {
02 base.ItemUpdating(prop);
03
04
05
06
07 }
You need to ensure that when the Title field is changed to include the word IMPORTANT, the Priority field is set to URGENT.
Which code segments should you add at lines 03, 04, 05, and 06?
You are developing an application page.
You need to create a pop-up window that uses the ECMAScript object model.
Which namespace should you use?