This is a compile time error when CSP is trying to auto-compile your page. The error is probably because your page is very large and the CSP compiler is unable to figure out how to split the page into multiple methods. The exact problem is quite Cache version dependent. Also it should not happen in 5.0.x releases.
My best suggestion is to try to pull as much of the page's code (that is in <script language=cache tag) as possible into separate methods in a utility class. Failing this, I would suggest a call to support to develop a workaround for your specific situation. Marvin "Fabio" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello everyone! > > I'm getting a pretty strange error message when I try running my CSP page! > > The error description is: > > A run-time error occurred while executing the page > > Error: <MAXSTRING> > ErrorNo: 2 > CSP Page: /diadema/curriculo.csp > Namespace: DIADEMA > Class: > Routine: %ooCSP.Document.1 > Location: Compile+56 > > > The line which is causing this MAXSTRING error is: > > <input name="Formacao3GCidade" type="text" id="Formacao3GCidade" > cspbind="Formacao3G.Cidade"> > > Yet there're 2 other lines with the same functions (but for Formacao1G and > 2G) that work PERFECTLY! > Their tags are the same (I did copy-paste and changed just the number) as > follows: > > <input name="Formacao1GCidade" type="text" id="Formacao1GCidade" > cspbind="Formacao1G.Cidade"> > <input name="Formacao2GCidade" type="text" id="Formacao2GCidade" > cspbind="Formacao2G.Cidade"> > > > The MAXSTRING error description (from the documentation) is: > > You have specified or tried to create a data string longer than the > implementation allows (32,767 characters). > > > This is a really strange error and I've never seen it before!!! > > Thanks in advance! > > I know this might be some stupid thing I'm missing! > > F�bio > >
