在 ASP.NET 中执行带有 ItemTemplate 参数的方法
我需要在我的 DataList
的 ItemTemplate
中执行一个方法。 如何格式化页面中的方法才能与 Eval
一起正常工作?
该方法采用 int
作为参数。
<%# NumberOfEmplyeeOrders(Int32.Parse("EmployeeID"))%>
I need to execute a method within an ItemTemplate
in my DataList
. How do I format the method in the page to work correctly with an Eval
?
The method takes an int
as a parameter.
<%# NumberOfEmplyeeOrders(Int32.Parse("EmployeeID"))%>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
<%# NumberOfEmplyeeOrders((Int32)Eval("EmployeeID")) %>
<%# NumberOfEmplyeeOrders((Int32)Eval("EmployeeID")) %>
我的演员表中有语法错误。 这是正确的代码:
I had a syntax error in my cast. Here is the correct code: