【发布时间】:2012-04-16 11:30:24
【问题描述】:
这是我的javascript
function btnEditClick() {
alert(document.getElementById('<%=LblRefPhyID.ClientID %>').value);
}
<asp:Repeater ID="repeaterRefPhysicianList" runat="server">
<ItemTemplate>
<tr onclick="selectRow(this);">
<td class="csstablelisttd" style="display: none;">
<asp:Label ID="LblRefPhyID" runat="server" Text='<%#Eval("Ref_Phy_ID")%>'></asp:Label>
</td>
在编辑按钮的 clientclick 上,我必须将 RefphyId 传递到另一个页面我该怎么做..
【问题讨论】:
标签: c# javascript asp.net