Urgent help need in ASP

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • rk2008@gmail.com

    Urgent help need in ASP

    I have a dll returning a variant array of 40,000 rows to an ASP page. I
    can't use a Variant variable in ASP since the maximum rows it accepts
    is 32717 approx. Can someone advice how to get the Variant array
    returned by the dll into the ASP page?
    Thanks!

  • Bob Barrows [MVP]

    #2
    Re: Urgent help need in ASP

    rk2008@gmail.co m wrote:
    I have a dll returning a variant array of 40,000 rows to an ASP page.
    I can't use a Variant variable in ASP since the maximum rows it
    accepts is 32717 approx. Can someone advice how to get the Variant
    array returned by the dll into the ASP page?
    Thanks!
    return it as a delimited string and use Split() to process it? Or
    perhaps an xml document?
    --
    Microsoft MVP -- ASP/ASP.NET
    Please reply to the newsgroup. The email account listed in my From
    header is my spam trap, so I don't check it very often. You will get a
    quicker response by posting to the newsgroup.


    Comment

    • rk2008@gmail.com

      #3
      Re: Urgent help need in ASP

      I am not supposed to change the dll.Is there any other way?
      Thanks

      Bob Barrows [MVP] wrote:
      rk2008@gmail.co m wrote:
      I have a dll returning a variant array of 40,000 rows to an ASP page.
      I can't use a Variant variable in ASP since the maximum rows it
      accepts is 32717 approx. Can someone advice how to get the Variant
      array returned by the dll into the ASP page?
      Thanks!
      return it as a delimited string and use Split() to process it? Or
      perhaps an xml document?
      --
      Microsoft MVP -- ASP/ASP.NET
      Please reply to the newsgroup. The email account listed in my From
      header is my spam trap, so I don't check it very often. You will get a
      quicker response by posting to the newsgroup.

      Comment

      • Jon Paal

        #4
        Re: Urgent help need in ASP

        I can't imagine anybody wants to see 40,000 rows in a page.

        use paging so the user only sees a limited number of rows and then can step through the results in chunks



        <rk2008@gmail.c omwrote in message news:1161282079 .705548.158730@ i42g2000cwa.goo glegroups.com.. .
        >I have a dll returning a variant array of 40,000 rows to an ASP page. I
        can't use a Variant variable in ASP since the maximum rows it accepts
        is 32717 approx. Can someone advice how to get the Variant array
        returned by the dll into the ASP page?
        Thanks!
        >

        Comment

        • Anthony Jones

          #5
          Re: Urgent help need in ASP


          <rk2008@gmail.c omwrote in message
          news:1161282079 .705548.158730@ i42g2000cwa.goo glegroups.com.. .
          I have a dll returning a variant array of 40,000 rows to an ASP page. I
          can't use a Variant variable in ASP since the maximum rows it accepts
          is 32717 approx.
          The max number of elements in array is 2^32. Perhaps you are running into
          another limitation like the amount memory being used.

          >Can someone advice how to get the Variant array
          returned by the dll into the ASP page?
          Thanks!
          >

          Comment

          Working...