That shouldn't be necessary, but it's great if it fixes your problem.
Anything inside the data-binding brackets, <% %>, is only seen on the server, and the result is sent to the browser. It's not an error to use quotes like this:
<a href="EditRole.aspx?RoleID=<%# DataBinder.Eval(Container.DataItem, "RoleID") %>">
Eric
|