Is there a way to incorporate ContinueRequest into the script shown below in order to bypass the 2500 limit?
<script runat="server">
Platform.Load("Core","1");
try {
var DEkey = Request.GetQueryStringParameter("DEkey");
var myDE = DataExtension.Init(DEkey);
var data = myDE.Rows.Retrieve();
Write(data.length);
} catch (error) {
Write("<br>error: " + Stringify(error));
}
</script>