Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 asp.net 4.0 页面中,在 GridView 的 ItemTemplate 中,我为绑定列应用了新表达式语法,例如
<%#: Eval(ColumnName) %>
数据在我的本地机器中成功绑定。部署到另一台服务器后,安装了 Framework 4.0,我收到以下错误
CS1525:无效的表达式术语“:”
反对上述表达。有什么解决方案吗?任何要包含在 Web.Config 中的东西?
您是否验证了已部署服务器的应用程序池正在运行.NET 4.0而不是.NET 2.0?
.NET 4.0
.NET 2.0
该:语法仅在.NET 4.0及以后有效。
:
这是来自 IIS 的示例屏幕截图:
注意:忽略行和文本,它取自另一个 SO 问题。