Here is Tips to put single quote ( ' ) into the data bind control binding syntax that is <%# ... %>
For Example:
OnClientClick=<%# "xyz('" + Eval("DataColumn").ToString() "'); return false;" %>
Direct put the binder syntax after = of the property you want to bind, don't use single or double quote. And put any string constant before and after your Eval("").
It is use full when we want to call javascript function on the click event of link,button,image etc controls.
For Example:
OnClientClick=<%# "xyz('" + Eval("DataColumn").ToString() "'); return false;" %>
Direct put the binder syntax after = of the property you want to bind, don't use single or double quote. And put any string constant before and after your Eval("").
It is use full when we want to call javascript function on the click event of link,button,image etc controls.