This question is locked. New answers and comments are not allowed.
hi,
I want to display two different actionlinks in a cell separated by a line. I have done the following:
I want to display two different actionlinks in a cell separated by a line. I have done the following:
columns.Add(o =>
{
%>
<a class="mouseoverLink" onclick="Label1Click('<%=o.RunLabel%>')">Label1</a>
</br>
<%
%>
<a class="mouseoverLink" onclick="Label2Click('<%=o.RunLabel%>')">Label1</a>
<%
})
.Title(
"Output")
.Width(
"100px");
But the scene is I get the both the actionlinks on the same line. What should I do to display in that manner?
Regards.