Ask a Question related to ASP.NET General, Design and Development.
-
Kenneth #1
Repeating asp.net grid headers
Hi,
I have an asp.net app that users would like to print out
on paper, but the items in the grid are sometimes more
than the height of the paper so the grid is divided onto
several pages.
I can demand my users to use IE4+.
Is there some way to repeat the grid headers on top of
every page written to paper?
TIA
/Kenneth
Kenneth Guest
-
trying to create data grid on the fly, with templated columns, and then updating all rows in the grid
Hi, Please help, I'm trying to create data grid on the fly, with templated columns, for editing, and then updating all rows in the grid on one... -
CFDocument and repeating table headers
I'm trying to output a multi-page report (essentially a large table) across multiple pages in PDF format. I know that the <cfdocumentitem> tag... -
How to edit records in a grid that's within a grid
I am having a heck of a time getting a child grid (a grid within a grid) to go into edit mode. My code is below; it will go into edit mode only... -
Repeating SOund
is there an actionscript command to use.. that will repeat the same sound over and over again through out the movie?? thanx Ganesh -
Repeating Column Headers In A Data List
I have a DataList control which I configured to display in multiple bands (column). I am wondering if it is possible to have the column headers... -
S. Justin Gengo #2
Re: Repeating asp.net grid headers
Kenneth,
I think you'd have to "manually" do this. You could create a "Print" page.
On that page you could dynamically create datagrids and add them to the
page. Each datgrid would be configured to the proper size so that the whole
datagrid prints on a single page. Then you could use the each datagrid's
built in paging to set the first datagrid to display page 1 of the data, the
second to display page 2, etc.
Sincerely,
--
S. Justin Gengo, MCP
Web Developer
Free code library at:
[url]www.aboutfortunate.com[/url]
"Out of chaos comes order."
Nietzche
"Kenneth" <kenneth.philp@chello.se> wrote in message
news:044e01c35f5a$ee10f550$a601280a@phx.gbl...> Hi,
>
> I have an asp.net app that users would like to print out
> on paper, but the items in the grid are sometimes more
> than the height of the paper so the grid is divided onto
> several pages.
>
> I can demand my users to use IE4+.
>
> Is there some way to repeat the grid headers on top of
> every page written to paper?
>
> TIA
>
> /Kenneth
S. Justin Gengo Guest
-
Kenneth #3
Re: Repeating asp.net grid headers
Hmmm...
If I created a "Print" page and dynamically created
pageable DataGrids then between every datagrid I should
need to have a paper feed.
How could I program a paper feed (wish some code) in a
dynamically created document?
/Kenneth
create a "Print" page.>-----Original Message-----
>Kenneth,
>
>I think you'd have to "manually" do this. You couldadd them to the>On that page you could dynamically create datagrids andso that the whole>page. Each datgrid would be configured to the proper sizeeach datagrid's>datagrid prints on a single page. Then you could use the1 of the data, the>built in paging to set the first datagrid to display page>second to display page 2, etc.
>
>Sincerely,
>
>--
>S. Justin Gengo, MCP
>Web Developer
>
>Free code library at:
>[url]www.aboutfortunate.com[/url]
>
>"Out of chaos comes order."
> Nietzche
>
>
>"Kenneth" <kenneth.philp@chello.se> wrote in message
>news:044e01c35f5a$ee10f550$a601280a@phx.gbl...>>> Hi,
>>
>> I have an asp.net app that users would like to print out
>> on paper, but the items in the grid are sometimes more
>> than the height of the paper so the grid is divided onto
>> several pages.
>>
>> I can demand my users to use IE4+.
>>
>> Is there some way to repeat the grid headers on top of
>> every page written to paper?
>>
>> TIA
>>
>> /Kenneth
>
>.
>Kenneth Guest
-
MS News \(MS ILM\) #4
Re: Repeating asp.net grid headers
May use CSS
IE4 and up any block level element should do the trick as a style defintion.
BlockLevelElementSelector1 { page-break-before: auto | always | left |
right }
BlockLevelElementSelector2 { page-break-after: auto | always | left |
ight }
<STYLE TYPE="text/css"><!--
..ChapHdr { display:block;page-break-before: always }
--></STYLE>
<H1 CLASS=chapter>Episode I - The Red Pimper...</H1>
.....
<H1 CLASS=chapter>Episode II- The Scarlet Mena.....</H1>
etc..
yes there is
page-break-after:always
As well, possible values are
auto | always | left | right
"Kenneth" <kenneth.philp@chello.se> wrote in message
news:039401c36040$a67254f0$a301280a@phx.gbl...> Hmmm...
>
> If I created a "Print" page and dynamically created
> pageable DataGrids then between every datagrid I should
> need to have a paper feed.
>
> How could I program a paper feed (wish some code) in a
> dynamically created document?
>
> /Kenneth
>> create a "Print" page.> >-----Original Message-----
> >Kenneth,
> >
> >I think you'd have to "manually" do this. You could> add them to the> >On that page you could dynamically create datagrids and> so that the whole> >page. Each datgrid would be configured to the proper size> each datagrid's> >datagrid prints on a single page. Then you could use the> 1 of the data, the> >built in paging to set the first datagrid to display page> >second to display page 2, etc.
> >
> >Sincerely,
> >
> >--
> >S. Justin Gengo, MCP
> >Web Developer
> >
> >Free code library at:
> >[url]www.aboutfortunate.com[/url]
> >
> >"Out of chaos comes order."
> > Nietzche
> >
> >
> >"Kenneth" <kenneth.philp@chello.se> wrote in message
> >news:044e01c35f5a$ee10f550$a601280a@phx.gbl...> >> >> Hi,
> >>
> >> I have an asp.net app that users would like to print out
> >> on paper, but the items in the grid are sometimes more
> >> than the height of the paper so the grid is divided onto
> >> several pages.
> >>
> >> I can demand my users to use IE4+.
> >>
> >> Is there some way to repeat the grid headers on top of
> >> every page written to paper?
> >>
> >> TIA
> >>
> >> /Kenneth
> >
> >.
> >
MS News \(MS ILM\) Guest



Reply With Quote

