Binding the Data to the GridView
Thursday, October 25th, 2007Hey if you are getting this error message:
“A call to Bind was not well formatted”
If you are trying to use something like this:
<%# Bind(”Last Name”) %>
With spaces or symbols in the name, you should use brackets [] around the name to make it work.
Like this:
<%# Bind(”[Last Name]“) %>
I hope this helps.