asp.net – <%#Eval(“State”)%>或<%#DataBinder.Eval(Container.DataItem,“state”)%>

前端之家收集整理的这篇文章主要介绍了asp.net – <%#Eval(“State”)%>或<%#DataBinder.Eval(Container.DataItem,“state”)%>前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有什么区别
<%# Eval("State") %>

在你的aspx页面,与有

<%# DataBinder.Eval(Container.DataItem,"State") %>

在你的aspx页面

解决方法

Eval(“State”)是DataBinder.Eval(Container.DataItem,“State”)语法的简化形式。它只在数据绑定模板控件内部工作。

有关详细信息,请参阅the MSDN documentation

原文链接:https://www.f2er.com/aspnet/254852.html

猜你在找的asp.Net相关文章