public void Page_Load() { if (!IsPostBack) { ServiceQueryOptions options = new ServiceQueryOptions(); options.PageNumber = 0; options.PageSize = Count; Places.DataSource = SessionManager.GetCollection <TransitPlace>( options, SessionManager.PlaceService.GetNewPlaces); Places.RepeatColumns = Count; Places.DataBind(); } }