我在ItemTemplate中有带按钮控件的asp.net中继器。
如何使用Repeater容器参数??使按钮调用javascript函数?
我的中继器ItemTemplate-
<ItemTemplate>
<div class="item">
<table>
<tr><th><%# Eval("propid") %></th>
<td><input id="Button1" type="button" value="showit" runat="server" /></td></tr>
</table>
</div>
</ItemTemplate>
同样,我想在单击Button1时调用 showit(<%#Eval(“ propid”)%>) JavaScript函数。