#= asp.net 网络表单中的运算符?

#= operator in asp.net webforms?

我看过<%$, <%@, <%=, <%# ... what's the deal?

但最近我在网络表单中看到了使用 #= 运算符的标记。这是新的吗?或者正在应用一些客户端框架?我在哪里可以获得更多信息以及它与其他运营商相比如何?:

<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>

这原来是 Telerik Controls 的特殊绑定。http://docs.telerik.com/devtools/aspnet-ajax/controls/listview/data-binding/client-side/overview#Section1_self