我使用下面的代码尝试获取列表框中的项目列表。所以可以有任意数量的项目/行,它们是10位数字。当我使用下面的代码时,“NPIListBox.Items.Count”只返回计数1,即使列表框中有3个项目/行。知道为什么我可以在单击Next时获得准确的计数?我的目标是将列表框中的所有项目传递到会话中,以便我可以使用其他页面上的值。谢谢!
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If IsPostBack Then
PopulateListBox()
End If
End Sub
Protected Sub cmdNext_Click(sender As Object, e As System.Web.UI.ImageClickEventArgs) Handles cmdNext.Click
Dim n As Integer = NPIListbox.Items.Count
Dim arr As String() = New String(n - 1) {}
For i As Integer = 0 To arr.Length - 1
arr(i) = NPIListbox.Items(i).ToString.Substring(NPIListbox.Items(i).ToString.Length - 10)
Next
Session("arr") = arr
Response.Redirect("~/frmDescription.aspx")
End Sub
Private Sub PopulateListBox()
If DoctorNameTextBox.Text = "" Then
Else
' Get value from text box
Dim textBoxValue As String = Me.DoctorNameTextBox.Text
' Create new item to add to list box
Dim newItem As New ListItem(textBoxValue)
' Add item to list box and set selected index
NPIListbox.Items.Add(newItem)
NPIListbox.SelectedIndex = NPIListbox.Items.Count - 1
End If
End Sub
使用以下javascript代码填充列表框
<script language="javascript" type="text/javascript">
function getSelected(source, eventArgs) {
var s = $get("<%=DoctorNameTextBox.ClientID %>").value;
var opt = document.createElement("option");
opt.text = s.substring(s.length - 10);
opt.value = s.substring(s.length - 10);
document.getElementById('<%= NPIListbox.ClientID %>').options.add(opt);
}
答案 0 :(得分:1)
由于您使用JS添加选项,因此您的服务器不知道这一点。当您重新发布值时,它们在运行时不存在,因此它会获取原始计数(1)。
您必须使用其他方法来获取新添加的值,例如:使用runat='server'
将它们添加到隐藏字段,然后从中获取值。