I've looked at <%$, <%@, <%=, <%# ... what's the deal?
but lately I've seen markup in webforms using the #= operator. Is this new? Or some client side framework being applied? Where can I get more information please and how does it compare with the other operators?:
<td><input type="text" name="ProductCountryProductName" value="#= (ProductName) ? ProductName : '' #" /></td>
<td><input type="text" name="ProductCountryProductExpiryDate" value="#= formatDate(ProductExpiryDate) #" /></td>
<td><input type="checkbox" name="ProductCountryIsAvailableEmployeeSite" #= IsAvailableEmployeeSite ? 'checked' : '' # /></td>
<td><input type="checkbox" name="ProductCountryIsAvailableCorporateSite" #= IsAvailableCorporateSite ? 'checked' : '' # /></td>
<td><input type="checkbox" name="ProductCountryIsAvailableBackOfficeSite" #= IsAvailableBackOfficeSite ? 'checked' : '' # /></td>
<td><input type="checkbox" name="ProductCountryIsAvailableSalesOrder" #= IsAvailableSalesOrder ? 'checked' : '' # /></td>