我在更新面板中的多视图中使用数据列表来显示各种数据量。DataList中的OnItemDataBound,根据item的不同,它添加了一个封装在一个div中的jQuery代码。有谁知道如何修复此代码使其正常工作?这是一些示例代码:
<asp:UpdatePanel runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:MultiView runat="server">
<asp:View runat="server">
<asp:DataList ID="tmpDataTable" runat="server"
DataSourceID="tmpDataSource"
OnItemDataBound="tmpDataBound">
<ItemTemplate>
<a id="tstATag" runat="server" onclick="testingAlert();">
<%# Eval("Text_Col") %><a>
</ItemTemplate>
</asp:DataList>
<asp:SqlDataSource OnSelecting="PermSet" ID="tmpDataSource"
runat="server" ConnectionString="<%$ ConnectionStrings:Con %>"
SelectCommand="SELECT * FROM SampleTable">
</asp:SqlDataSource>
<div runat="server id="tmpDiv"></div>
</asp:View>
</asp:MultiView>
</ContentTemplate>
这是后端代码:
protected void tmpDataBound(object sender, DataListItemEventArgs e)
{
if (e.Item.ItemType == ListItemType.Item ||
e.Item.ItemType == ListItemType.AlternatingItem)
{
HtmlGenericControl tstATag = e.Item.FindControl("tstATag") as HtmlGenericControl;
tmpDiv.InnerHtml += @" <script type='text/javascript'>
function testingAlert() {
alert(tstATag.innerHtml);
}
</script>";
}
}