asp.net - Template fields, bound fields? is any performance issue? -
In ASP.net, when we use grid view controls, instead of using the item template, What is the difference in performance issues?
Boundfield of specified fields Displays the value of the source field, text and TemplateField allow the mix of HTML markup, web control and data binding syntax Is obtained.
Therefore, finally, both things present HTML output (toward the browser) and will not be the issue of creating text or any control display on the client side.
You can not render any specific control in any bound field, it displays the dataite data as plain text, while you can bind the data in the case of template fields many different - Different HTML controls
In the end, I do not think the bound field or template fields take you to the display issue.
Comments
Post a Comment