Here is how I tried to mention two conditions if this or this, but it doesn't work.
if (Type == 2 && PageCount == 0) !! (Type == 2 && PageCount == '') {
PageCount = document.getElementById('<%=hfPageCount.ClientID %>').value;
}
How do I specify multiple conditions in an if
statement?