This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <control name="Person Razor" showInMenu="true" viewingGroup="1"> | |
| <properties> | |
| <category name="Person"> | |
| <text name="Title"> | |
| <options> | |
| <option label="Mr" value="Mr" /> | |
| <option label="Mrs" value="Mrs" /> | |
| <option label="Miss" value="Miss" /> | |
| <option label="Ms" value="Ms" /> | |
| <option label="Dr" value="Dr" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <nodeQuery name="Query1" selectCount="10"> | |
| <where property="Title" operator="Contains" value="Page" /> | |
| </nodeQuery |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <nodequery> | |
| <orSubQuery> | |
| <where property="Title" operator="Contains" value="@Request.Querystring.Title" /> | |
| <and property="Data.MD_Description" operator="Contains" value="@Request.Form.Keywords" /> | |
| </orSubQuery> | |
| </nodequery> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <nodeQuery name="Query1" selectCount="10"> | |
| <where property="Title" operator="Contains" value="Page" /> | |
| </nodeQuery> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <nodeQuery name="Query1" selectCount="10"> | |
| <where property="Title" operator="DoesNotContain" value="Page" /> | |
| </nodeQuery> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <nodeQuery name="Query1" selectCount="10"> | |
| <where property="PageLanguageID" operator="IsEqualTo" value="1" /> | |
| </nodeQuery> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <nodeQuery name="Query1" selectCount="10"> | |
| <where property="PageLanguageID" operator="IsNotEqualTo" value="1" /> | |
| </nodeQuery> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <nodeQuery name="Query1" selectCount="10"> | |
| <where property="Path" operator="StartsWith" value="site-elements" /> | |
| </nodeQuery> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <nodeQuery name="Query1" selectCount="10"> | |
| <where property="Path" operator="EndsWith" value=".js" /> | |
| </nodeQuery> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <nodeQuery name="Query1" selectCount="10"> | |
| <where property="F_ID" operator="GreaterThan" value="1024" /> | |
| </nodeQuery> |