; //每页显示数 workParm = mySqlCommand.Parameters.Add("@a_intPageSize", SqlDbType.Int); mySqlCommand.Parameters["@a_intPageSize"].Value = intPageSize; //总记录数(存储过程输出参数) workParm = mySqlCommand.Parameters.Add("@RecordCount", SqlDbType.Int); workParm.Direction = ParameterDirection.Output; //当前页记录数(存储过程返回值) workParm = mySqlCommand.Parameters.Add("RowCount", SqlDbType.Int); workParm.Direction = ParameterDirection.ReturnValue;
mySqlConnection.Open(); Repeater.DataSource = mySqlCommand.ExecuteReader();   上一页 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] ... 下一页 >> |