c# - Bind two or more withespaces gridview -
I am trying to bind two or more white space Gridwu, but it is only one show.
example bind:
"| ----- ----- |"
Result:
"| ----- ----- |"
Does anyone know how to show value in reality? Thank you
is after all the first place ignored HTML page. Give them the & amp; Nbsp; Trying to change with
So if you have something like:
& lt;% # Eval ( "Column1")% & gt;
Where Column 1
in | ----- ----- |
is a string, you may need it:
& lt;% # ((string) Eval ("Column1")). Change ("", "& amp; nbsp;")%>
Comments
Post a Comment