public void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.Pager)
        {
            Label label = new Label();
            label.Text = "页码:";
            e.Row.Cells[0].Controls.AddAt(0, label);
        }
    }请问怎么把页码放在1 2 3 4...前面呢
 我写的都是在他上面或下面,查看源码的时候 那个“页码”在Table(1 2 3...)外面的td里面