从中继器控件中调用JavaScript函数

时间:2018-06-26 08:32:05

标签: javascript asp.net onclick repeater

我在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函数。

0 个答案:

没有答案