GridView の PagerTemplate に ASP DataRepeater を配置しました。コードで DataRepeater を見つける必要があります
私はこれを試しています。
Repeater rptPager = (Repeater)gv_Inbox.BottomPagerRow.FindControl("rptPager");
しかし、これは例外のスローです
Object reference not set to an instance of an object.
やってみると
GridViewRow row = gv_Inbox.BottomPagerRow;
Null を返します。
GridView でカスタム ページングを試しています。その中で、Repeater を GridView の下に配置し、ページングを使用することができます。しかし、リピーターを GridView の下部に配置したいと思います。ページャ列。では、どうすればこれを行うことができますか??
手伝って頂けますか??