Raw does not render link in vb.net

-1

I'm doing a code snippet that also returns a string in vb.net mvc 4.5 however the string is mounted correctly.

But in the view

@Html.Raw(item.metodo.ToString())

it does not show the links

the string I'm mounting so

strDiv += "<a href='#' id='" + reader("Nome").ToString().Trim + "' onclick='mostrar_abas(this);'>" + reader("Nome").ToString().Trim + "</a>"

strDiv += "<div id='div_" + reader("Lista").ToString().Trim + "'>   ABCDE</div>"

asked by anonymous 28.03.2016 / 21:38

1 answer

2

The problem actually is that in case the link source was in the same color as the bottom of the page the routine was working perfectly

    
31.03.2016 / 22:52