0
我有一個<td>
包含文本。如何獲得來自VB.net中代碼的文本
<td width="60%" id="SpeciesName" runat = "server" ><b><%#showData(Container.DataItem, "Name")%></b></td>
我試圖讓SpeciesName' from the code behind, and Add it in a String list. I was capable of doing so for
ASP將InnerText:文本框, but not for
`。
這裏是後面的代碼在vb.net
Private Shared Function getInputValues(ByVal currItem As RepeaterItem) As List(Of String())
Dim Input As String = "SpeciesName"
Dim alParams As New List(Of String())(1)
Dim txtCurrent As TableCell = CType(currItem.FindControl(lstInput), TableCell)
If txtCurrent.Text.Trim <> "" And txtCurrent.Text.Trim <> "0" Then
alParams.Add(New String() {Input, txtCurrent.Text.Trim, "int"})
End If
Return alParams
End Function
提前感謝!
你想'SpeciesName'將InnerText?即這個部分,右 - <%#showData(Container.DataItem,「Name」)%>'? – TheUknown
@完全知道! – Wafae
@TheUknown我剛剛解決它。謝謝! – Wafae