How to concatenate static text in the start of Eval(\"\") in asp.net?
Here is a good method I am using whereby I want to Concatenate a string to an Eval and use in the CommandArgument of a LinkButton.
Append string to start
CommandArgument='<%# String.Format(string.Concat("TextString", Eval("DBValue")))%>'
Append string to end
CommandArgument='<%# String.Format(string.Concat(Eval("DBValue"), "TextString"))%>'