David Meyer
|
| Posted: 09/19/2002, 5:37 PM |
|
This is a multi-part message in MIME format.
------=_NextPart_000_0050_01C2600B.948A6600
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Hello Everyone,
I am running Code Charge Studio 1.0.6.0. I have seen previous examples =
of the "Export To Excel" on sites that
have used Code Charge. Can someone point me in the right direction on =
how I might be able to create the "Export
to Excel" application with Code Charge Studio?
Thanks in Advance,
--=20
David Meyer
303.618.4522
------=_NextPart_000_0050_01C2600B.948A6600
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2719.2200" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>Hello Everyone,</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>I am running Code Charge Studio =
1.0.6.0. I=20
have seen previous examples of the "Export To Excel" on sites =
that</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>have used Code Charge. Can =
someone point me=20
in the right direction on how I might be able to create the=20
"Export</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>to Excel" application with Code =
</FONT><FONT=20
face=3DArial size=3D2>Charge Studio?</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Thanks in Advance,</FONT></DIV><FONT =
face=3DArial=20
size=3D2>
<DIV><BR>-- <BR>David Meyer<BR>303.618.4522</DIV>
<DIV> </DIV>
<DIV></FONT> </DIV></BODY></HTML>
------=_NextPart_000_0050_01C2600B.948A6600--
|
|
|
 |
RonB
|
| Posted: 09/20/2002, 2:23 PM |
|
Hi.
in PHP:
put this at the top of your code( .php file):
Header("Content-type: application/vnd.ms-excel");
That's all
Ron
"David Meyer" <dmeyer9@msn.com> schreef in bericht
news:amdqjq$q3v$1@news.codecharge.com...
Hello Everyone,
I am running Code Charge Studio 1.0.6.0. I have seen previous examples of
the "Export To Excel" on sites that
have used Code Charge. Can someone point me in the right direction on how I
might be able to create the "Export
to Excel" application with Code Charge Studio?
Thanks in Advance,
--
David Meyer
303.618.4522
|
|
|
 |
Tobias Weik
|
| Posted: 09/20/2002, 3:09 PM |
|
RonB schrieb:
> Hi.
>
> in PHP:
>
> put this at the top of your code( .php file):
> Header("Content-type: application/vnd.ms-excel");
>
> That's all
Just a small add: if you put
Header("Content-Disposition: inline; filename=\"your_name_here.xls\"");
into the next row at top of your code, you can give a name to the
"excel"-file that should be downloaded (even this is defined as inline,
it will be downloaded...).
Anyway donīt forget to reduce your code as good as possible - just a
grid: no sorter, navigation, "no-record-row", grid-header or -footer or
anything else... :)
Tobias
|
|
|
 |
Raxip
|
| Posted: 09/23/2002, 10:50 AM |
|
HMMM, DO YOU KNOW THE CODE FOR C#?
"Tobias Weik" <tw@ccug.de> wrote in message
news:amg6bg$c5d$1@news.codecharge.com...
> RonB schrieb:
> > Hi.
> >
> > in PHP:
> >
> > put this at the top of your code( .php file):
> > Header("Content-type: application/vnd.ms-excel");
> >
> > That's all
>
> Just a small add: if you put
>
> Header("Content-Disposition: inline; filename=\"your_name_here.xls\"");
>
> into the next row at top of your code, you can give a name to the
> "excel"-file that should be downloaded (even this is defined as inline,
> it will be downloaded...).
>
> Anyway donīt forget to reduce your code as good as possible - just a
> grid: no sorter, navigation, "no-record-row", grid-header or -footer or
> anything else... :)
>
> Tobias
>
|
|
|
 |
|