ASP.Net:
在代码隐藏中,我可以通过调用DataBinder.Eval(myObject,"Property");来模拟<%# Eval("Property")%>
如何模拟对<%# Bind("Property")%>的调用?
非常感谢
发布于 2008-10-07 11:23:13
DataBinder.GetPropertyValue(myObject,"Property")
https://stackoverflow.com/questions/178005
复制相似问题