Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ここで起こったようにASP.NETを使用する代わりにC#を使用してページ番号を変更する方法はありますか?
<asp:GridView ID="gvData" runat="server" AllowPaging=true PageSize=5 PagerSettings-PageButtonCount=20 > </asp:GridView>
これを使って..
gvData.pagesize=somenumber; gvData.pagersettings.Mode=some mode;
ページのサイズを変更するpageiszeと
pagersettings.Modeは、番号付けモードを変更します
これですか?
gvData.PageSize = 6; gvData.PageCount = 10; gvData.AllowPaging=true; ...
一番下にタグ?