Client side data binding is possible in asp.net 4.0
please discuss if Client side data binding 开发者_如何转开发is possible in asp.net 4.0 and also show me how to do it.
Well, it depends on what you are trying to bind... It also varies depending on whether you are using web forms or MVC. There is a host of great resources on this web site: http://www.asp.net/web-forms. They also have an MVC resource if you are on that platform.
Thanks.
Nothing should have changed since ASP.net 1
<%# Container.DataItem("yourcolumn") %>
or
<%# Eval("yourcolumn") %>
精彩评论