程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> repeater-Repeater 下數據獲取問題

repeater-Repeater 下數據獲取問題

編輯:編程綜合問答
Repeater 下數據獲取問題
 <table class="table table-hover table-bordered table-striped">
            <asp:Repeater ID="rptArtList" runat="server">
                <HeaderTemplate>
                    <tr>
                    <th style="width: 100px;">
                            用戶ID
                        </th>
                      <th style="width: 100px;">
                            用戶名稱
                        </th>

                        <th style="width: 60px;">
                            所在城市
                        </th>    
                        <th style="width: 60px;">
                            操作
                        </th>                      

                    </tr>
                </HeaderTemplate>
                <ItemTemplate>
                    <tr>
                        <td id="td1" runat="server">
                            <%# Eval("CustomerID")%>                                    
                        </td>
                        <td>
                            <%# Eval("Name")%>
                        </td>
                       <td>
                            <%# Eval("CityName")%>
                        </td>
                        <td>
                            <asp:LinkButton ID="LinkButton2" runat="server"  CssClass="btn btn-primary"  OnClientClick="return Preview();">更改組別</asp:LinkButton>
                        </td>

                    </tr>
                </ItemTemplate>
            </asp:Repeater>
        </table> 

原來只有3列 沒有更改組別,現在需要多加這個功能,更改時會彈出窗口
圖片說明
現在圖片中的ListID我已經拿到了,我想要再後台獲取 當前行的 CustomerID 去數據庫判斷 具體數據 然後做修改,後台如何才能拿到當前行的CustomerID呢

最佳回答:


圖片說明

asdasd5988
asdasd5988
bulusli3
asdasd5988
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved