CodeCharge Studio
search Register Login  

Web Reporting

Visually create Web Reports in PHP, ASP, .NET, Java, Perl and ColdFusion.
CodeCharge.com

YesSoftware Forums -> Archive -> CodeChargeStudio.Discussion

 Problem with CCS, only see code on all screens

Print topic Send  topic

Author Message
Alfred Trabulsi
Posted: 11/01/2002, 11:53 AM

I just insatlled CCS but I do not see the previews/images on any screen all
I get is a bunch of code.

Did I miss something?

btw: the CC support page is down

Thanx in advance
Alfred.

michael weaver
Posted: 11/01/2002, 12:00 PM

Welcome, Alfred!

We need more details - Where do you see code? What kind of code is it? Do
you see it 1) when you publish the project, 2) when you open a project and
view in the Design tab, or 3) when you just open the program?

If it's 1 you most likely have a problem with your server connection. If
it's 2 or 3 then most likely you need to reinstall.

I'm able to get to the support site - http://support.codecharge.com . You
may want to try again.

Don't get discouraged!

michael

"Alfred Trabulsi" <atra@intelexis.com> wrote in message
news:apum3e$2mq$1@news.codecharge.com...
> I just insatlled CCS but I do not see the previews/images on any screen
all
> I get is a bunch of code.
>
> Did I miss something?
>
> btw: the CC support page is down
>
> Thanx in advance
> Alfred.
>
>

Alfred Trabulsi
Posted: 11/01/2002, 12:09 PM

Hi Michael:

I see all the html code on any screen, even on the design screen.

The support site is up, but when u hit submitt, it returna an "unable to
execute" error.

Alfred.

"michael weaver" <zero@michaelweaver.org> wrote in message
news:apumh3$3iu$1@news.codecharge.com...
> Welcome, Alfred!
>
> We need more details - Where do you see code? What kind of code is it? Do
> you see it 1) when you publish the project, 2) when you open a project and
> view in the Design tab, or 3) when you just open the program?
>
> If it's 1 you most likely have a problem with your server connection. If
> it's 2 or 3 then most likely you need to reinstall.
>
> I'm able to get to the support site - http://support.codecharge.com . You
> may want to try again.
>
> Don't get discouraged!
>
> michael
>
> "Alfred Trabulsi" <atra@intelexis.com> wrote in message
>news:apum3e$2mq$1@news.codecharge.com...
> > I just insatlled CCS but I do not see the previews/images on any screen
> all
> > I get is a bunch of code.
> >
> > Did I miss something?
> >
> > btw: the CC support page is down
> >
> > Thanx in advance
> > Alfred.
> >
> >
>
>

Alfred Trabulsi
Posted: 11/01/2002, 12:42 PM

O.K. I finnally got CCS to work but when I generate a project and go to live
view I get the following error:
+++++++++++++++
Error Type:
Microsoft VBScript compilation (0x800A03F2)
Expected identifier
/ici/EMPPAL_list.asp, line 361, column 4
Dim SUB
---^

Browser Type:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)

Page:
GET /ici/EMPPAL_list.asp

Is this a CCS problem?

thanx

"michael weaver" <zero@michaelweaver.org> wrote in message
news:apumh3$3iu$1@news.codecharge.com...
> Welcome, Alfred!
>
> We need more details - Where do you see code? What kind of code is it? Do
> you see it 1) when you publish the project, 2) when you open a project and
> view in the Design tab, or 3) when you just open the program?
>
> If it's 1 you most likely have a problem with your server connection. If
> it's 2 or 3 then most likely you need to reinstall.
>
> I'm able to get to the support site - http://support.codecharge.com . You
> may want to try again.
>
> Don't get discouraged!
>
> michael
>
> "Alfred Trabulsi" <atra@intelexis.com> wrote in message
>news:apum3e$2mq$1@news.codecharge.com...
> > I just insatlled CCS but I do not see the previews/images on any screen
> all
> > I get is a bunch of code.
> >
> > Did I miss something?
> >
> > btw: the CC support page is down
> >
> > Thanx in advance
> > Alfred.
> >
> >
>
>

Alfred Trabulsi
Posted: 11/01/2002, 1:04 PM

here is the code where the error get reported


Dim Sorter_EMANAAL
Dim IMP_EXP
Dim NUM_REF
Dim SUB this is the offending line
Dim NUM_PED
Dim TIPCAM
Dim REG_ENT
Dim FEC_ENT
Dim CVE_IMP
Dim RFC_IMP
Dim MED_TRAN
Dim CLA_ALM
Dim NACT
Dim PENDIENTE
Dim LINEA
"michael weaver" <zero@michaelweaver.org> wrote in message
news:apumh3$3iu$1@news.codecharge.com...
> Welcome, Alfred!
>
> We need more details - Where do you see code? What kind of code is it? Do
> you see it 1) when you publish the project, 2) when you open a project and
> view in the Design tab, or 3) when you just open the program?
>
> If it's 1 you most likely have a problem with your server connection. If
> it's 2 or 3 then most likely you need to reinstall.
>
> I'm able to get to the support site - http://support.codecharge.com . You
> may want to try again.
>
> Don't get discouraged!
>
> michael
>
> "Alfred Trabulsi" <atra@intelexis.com> wrote in message
>news:apum3e$2mq$1@news.codecharge.com...
> > I just insatlled CCS but I do not see the previews/images on any screen
> all
> > I get is a bunch of code.
> >
> > Did I miss something?
> >
> > btw: the CC support page is down
> >
> > Thanx in advance
> > Alfred.
> >
> >
>
>

michael weaver
Posted: 11/01/2002, 1:41 PM

Is your server running and is ASP working and available on your server? If
you don't know try copying the code below saving the following as test.asp
and placing it in your site directory.

<% Option Explicit %>
<%@ Language="VBScript" %>
<!--- This page should display "ASP is working!" --->
<!--- if ASP is available to you. --->

<HTML>
<HEAD>
<TITLE>ASP Test Page</TITLE>
</HEAD>
<BODY>
<% Dim TestString %>
<% TestString = "ASP is Working!" %>
<H1>
<% Response.Write TestString %>
</H1>
</BODY>
</HTML>

Access it through yout browser as yourdomain.com/test.asp to see if your
server is working.

michael
"Alfred Trabulsi" <atra@intelexis.com> wrote in message
news:apuov1$80o$1@news.codecharge.com...
> O.K. I finnally got CCS to work but when I generate a project and go to
live
> view I get the following error:
> +++++++++++++++
> Error Type:
> Microsoft VBScript compilation (0x800A03F2)
> Expected identifier
> /ici/EMPPAL_list.asp, line 361, column 4
> Dim SUB
> ---^
>
> Browser Type:
> Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)
>
> Page:
> GET /ici/EMPPAL_list.asp
>
> Is this a CCS problem?
>
> thanx
>
> "michael weaver" <zero@michaelweaver.org> wrote in message
>news:apumh3$3iu$1@news.codecharge.com...
> > Welcome, Alfred!
> >
> > We need more details - Where do you see code? What kind of code is it?
Do
> > you see it 1) when you publish the project, 2) when you open a project
and
> > view in the Design tab, or 3) when you just open the program?
> >
> > If it's 1 you most likely have a problem with your server connection. If
> > it's 2 or 3 then most likely you need to reinstall.
> >
> > I'm able to get to the support site - http://support.codecharge.com .
You
> > may want to try again.
> >
> > Don't get discouraged!
> >
> > michael
> >
> > "Alfred Trabulsi" <atra@intelexis.com> wrote in message
> >news:apum3e$2mq$1@news.codecharge.com...
> > > I just insatlled CCS but I do not see the previews/images on any
screen
> > all
> > > I get is a bunch of code.
> > >
> > > Did I miss something?
> > >
> > > btw: the CC support page is down
> > >
> > > Thanx in advance
> > > Alfred.
> > >
> > >
> >
> >
>
>

DonB
Posted: 11/01/2002, 3:44 PM

This would indicate you named something "SUB", which is a reserved word.


"Alfred Trabulsi" <atra@intelexis.com> wrote in message
news:apuov1$80o$1@news.codecharge.com...
> O.K. I finnally got CCS to work but when I generate a project and go to
live
> view I get the following error:
> +++++++++++++++
> Error Type:
> Microsoft VBScript compilation (0x800A03F2)
> Expected identifier
> /ici/EMPPAL_list.asp, line 361, column 4
> Dim SUB
> ---^
>


Shawn Mason
Posted: 11/03/2002, 9:57 AM

Sub is a reserved word. You can't Dim a reserved word (basically you can't
name a variable SUB). Change it to something else.

--
Kindest Regards,

Shawn Mason,CCD,MCP
I.S. Software Design Associates


"Alfred Trabulsi" <atra@intelexis.com> wrote in message
news:apuq98$a94$1@news.codecharge.com...
> here is the code where the error get reported
>
>
> Dim Sorter_EMANAAL
> Dim IMP_EXP
> Dim NUM_REF
> Dim SUB this is the offending line
> Dim NUM_PED
> Dim TIPCAM
> Dim REG_ENT
> Dim FEC_ENT
> Dim CVE_IMP
> Dim RFC_IMP
> Dim MED_TRAN
> Dim CLA_ALM
> Dim NACT
> Dim PENDIENTE
> Dim LINEA
> "michael weaver" <zero@michaelweaver.org> wrote in message
>news:apumh3$3iu$1@news.codecharge.com...
> > Welcome, Alfred!
> >
> > We need more details - Where do you see code? What kind of code is it?
Do
> > you see it 1) when you publish the project, 2) when you open a project
and
> > view in the Design tab, or 3) when you just open the program?
> >
> > If it's 1 you most likely have a problem with your server connection. If
> > it's 2 or 3 then most likely you need to reinstall.
> >
> > I'm able to get to the support site - http://support.codecharge.com .
You
> > may want to try again.
> >
> > Don't get discouraged!
> >
> > michael
> >
> > "Alfred Trabulsi" <atra@intelexis.com> wrote in message
> >news:apum3e$2mq$1@news.codecharge.com...
> > > I just insatlled CCS but I do not see the previews/images on any
screen
> > all
> > > I get is a bunch of code.
> > >
> > > Did I miss something?
> > >
> > > btw: the CC support page is down
> > >
> > > Thanx in advance
> > > Alfred.
> > >
> > >
> >
> >
>
>


   


These are Community Forums for users to exchange information.
If you would like to obtain technical product help please visit http://support.yessoftware.com.

Internet Database

Visually create Web enabled database applications in minutes.
CodeCharge.com

Home   |    Search   |    Members   |    Register   |    Login


Powered by UltraApps Forum created with CodeCharge Studio
Copyright © 2003-2004 by UltraApps.com  and YesSoftware, Inc.