Created
April 7, 2015 13:47
-
-
Save ps-team/7327d65801dc95225e44 to your computer and use it in GitHub Desktop.
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
string currentLetter = A; | |
if (Request.QueryString["letter"] != null) { | |
currentLetter = Request.QueryString["letter"]; | |
} | |
var allContentQuery = Query.Where("Property_IncludeInAtoZ").IsEqualTo("1"); | |
var allContent = new NodeFinder().Find(allContentQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment