我对asp.net 真的很陌生,所以如果这看起来是一个非常基本的问题,请原谅我。我有一个包含转发器的 asp.net 页面。这是代码:
<div class="formRow">
<asp:Repeater ID="uxStudentFormActive" runat="server">
<ItemTemplate>
<span style="font-weight:bold;" ><asp:Literal ID="uxFormName" runat="server" Text="#" /></span><br />
<asp:TreeView ID="uxFormHistoryList" runat="server" Target="_blank" />
</ItemTemplate>
</asp:Repeater>
</div>
这是我的 vb.net 页面中处理的子uxStudentFormActive.ItemDataBound
:
Protected Sub uxStudentFormActive_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.RepeaterItemEventArgs) Handles uxStudentFormActive.ItemDataBound
Dim dr As DataRowView = CType(e.Item.DataItem(), DataRowView)
If Convert.ToInt32(dr("FormId")) = 29 Then
...
End If
End Sub
我不确定该页面如何aspx
与 vb.net 页面交互。我的问题是如何找出在我的 vb.net 页面中e
传递给 sub的值uxStudentFormActive_ItemDataBound
是从哪里来的?提前致谢。