You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RobertTheGrey edited this page Jan 12, 2013
·
1 revision
<elseif>
Forms a part of an if/elseif/else conditional structure.
<elseifcondition="x">anyXml</else>
Results in C#:
else if(x){//anyXml-generated-code}
Must follow an element that produces an if/elseif statement. Contains material that will be rendered if all preceding conditions are false, and the expression x evaluates to true.