In my code behind:
protected void Page_Load(object sender, EventArgs e)
{
mainMenu.StopProcessing = false;
mainMenu.WhereCondition = "NodeID != 1282" and "NodeID != 1287";
mainMenu.ReloadData(true);
}
I using WhereCondition with many condition, but I can't using "and", "or"...
How do I do that?
Thank!