XSL Limit the data in the browser

Hi,

I have a code that shows all documents of a database. In a page (results.html) with Javascript (MSXML), I apply a XSLStylesheet.

The problem is when the number of documents is more than 25. In this case only shows the first documents.

Where is wrong? I need a solution.

Thanks for all suggestions in advanced.

Subject: XSL Limit the data in the browser

There’s a limit on how many documents are displayed in views at one time. This is controlled in two places:

  1. When embedding your view in its $$ViewTemplate form:

  2. At the server level: there’s a default (usually 30 rows) set in your server document, which can be changed.

You could also try playing with the count query string (i.e. a URL which contains …YOURVIEW?OpenView&Count=XX

HTH

Subject: RE: XSL Limit the data in the browser

Thank you very very much.I haven´t used a embbebed view. I have a page with html extension with…

< div id="HTMLresults>

And in OnLoad event using MSXML I apply the XSL Stylesheet.

But I have modified the server document and now is right.

Thank you