2010-05-26 67 views
0

我一直在嘗試找到使用Html.Encode()時獲取字符串的html標題的語法示例。如果太長,我想在鼠標懸停標題中顯示全名。如何在Html.Encode()中使用html'title'屬性?

有沒有辦法做到這一點,而不在< SPAN>包裹串,即

<span title = "<%=Html.Encode(model.Name) %>"> //displays the full name on mouseover 
<%=Html.Encode(model.Name.Substring(0, 10))%>... //displays the name up to a max length 
</span> 

或者我應該做這種方式?

謝謝!

回答

1

沒有包含元素,你要在哪裏掛你的標題?

所以,是的,你應該把它包裝在一個內聯元素一樣span

+0

啊。好,謝謝!難怪我無法找到一個例子:)我會保持原樣 – Kai 2010-05-26 23:16:41