I need help, please

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Newsgroup

    I need help, please

    I have a problem with my sql server.
    I use a lot of Request.QuerySt ring("Index1")
    But the Request.QuerySt ring is always the same.
    I use in If-Loops.

    The server send me the follow message:
    Response Buffer Limit Exceeded

    Execution of the ASP page caused the Response Buffer to exceed its
    configured limit

    Can everybody help me, please.
    Thank you.


  • Jens

    #2
    Re: I need help, please

    Hi,

    Sorry but thats not a SQL Server question, you´d better give it a try
    in the ASP groups.

    HTH, jens Suessmeyer.

    ---

    ---

    Comment

    • das

      #3
      Re: I need help, please

      As you say, this seems to be placed in an infinite loop and so the
      'buffer exceeded limit' error.
      try a smaller loop like
      while i < 3
      Request.QuerySt ring(...)
      .....

      and see what gets printed.

      also this is ASP error not an SQL Server.

      Comment

      Working...