Here is my codes in aspx page:
- <td colspan="2" class="main_menu" runat="server" onclick='toggleDisplay(<%#Eval("description")%>);'><%#Eval("description")%></td>
Here is in "View source":
onclick="toggleDisplay(<%#Eval("descriptio n")%>);">Administrator Functions</td>
When putting
in <td> tag, it understand & show the correct value, but when in
- onclick='toggleDisplay(<%#Eval("description")%>);'>
it didn't understand.
Can any1 give me a solution for this case ? Thank alot !