3

How insert page break in rtf files using asp.net with c#.net version 1.1?

Jon Seigel
  • 12,251
  • 8
  • 58
  • 92
Avinash
  • 3,231
  • 10
  • 36
  • 46

2 Answers2

1

Have a look here: http://latex2rtf.sourceforge.net/RTF-Spec-1.0.txt

For RTF v1.0 the control character was \sbkpage.

EDIT:

Its the same for v1.5 too: http://www.biblioscape.com/rtf15_spec.htm

immutabl
  • 6,857
  • 13
  • 45
  • 76
0

You can add \page.

Here's a tutorial at http://www.webdev-tuts.com/generate-rtf-file-using-php.html

in php.

Edesa
  • 581
  • 7
  • 16