我有一個鏈接按鈕裏面的asp.net中繼器控制。我試圖在點擊事件上調用serverside方法,但沒有運氣。我試過html錨,但它不工作,所以我切換到鏈接按鈕。asp.net鏈接按鈕沒有射擊
<ItemTemplate>
<li class="showmenu">
<p class="subtext"> <asp:LinkButton ID="LinkButton1" runat="server" onclick="frontimagechange_click">Front</asp:LinkButton></p>
<a href="#"><img id="Img1" src='<%# this.ResolveUrl("~/testimages/" + Eval("front")) %>' width="350" height="560" alt='<%# Eval("stylenumber") %>' runat="server" align="left" /></a>
</li>
</ItemTemplate>
服務器端代碼:
protected void frontimagechange_click(object sender, EventArgs e)
{
//code to get the id of link button and change the
//src of the image control inside the repeater
}
@rahul的大部分我還沒有得到的答案和我嘗試了一些其他的方式來解決這個問題的問題,它不會工作。 – sam
你確定你沒有得到答案。其實我檢查了你的問題,他們至少有一個或兩個答案,除了網格一個outofindex錯誤 – rahularyansharma