ASP formfeed ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • PW

    ASP formfeed ?

    I'm creating an ASP to print labels for a client.

    How do you send a formfeed to the printer ?



  • Ray at

    #2
    Re: ASP formfeed ?

    ASP cannot do this. With cascading style sheets, you could do line breaks
    and what not. I suggest looking up some CSS stuff or inquiring in
    comp.infosystem s.www.authoring.stylesheets.

    Ray at work

    "PW" <pwa@NObigSPAMp ond.net.au> wrote in message
    news:OKnT4YaPEH A.1480@TK2MSFTN GP10.phx.gbl...[color=blue]
    > I'm creating an ASP to print labels for a client.
    >
    > How do you send a formfeed to the printer ?
    >
    >
    >[/color]


    Comment

    • Curt_C [MVP]

      #3
      Re: ASP formfeed ?

      from ASP? I'm assuming you mean to a ServerSide printer?
      Otherwise there is very little you can do to a clientside printer. You'll
      have to look at a component most likely.

      --
      Curt Christianson
      Owner/Lead Developer, DF-Software
      Site: http://www.Darkfalz.com
      Blog: http://blog.Darkfalz.com


      "PW" <pwa@NObigSPAMp ond.net.au> wrote in message
      news:OKnT4YaPEH A.1480@TK2MSFTN GP10.phx.gbl...[color=blue]
      > I'm creating an ASP to print labels for a client.
      >
      > How do you send a formfeed to the printer ?
      >
      >
      >[/color]


      Comment

      • PW

        #4
        Re: ASP formfeed ?

        Found it at ASPFAQ ...

        <head>
        <STYLE TYPE="text/css">
        P.breakhere {page-break-before: always}
        </STYLE>
        </head>

        then just put a ...

        <P CLASS="breakher e">

        .... wherever I want the form feed.

        Works a treat.




        Comment

        • [ + 2 0 r p 3 ]

          #5
          Re: ASP formfeed ?

          and what does this have to do with asp?

          NOTHING!!!

          "PW" <pwa@NObigSPAMp ond.net.au> wrote in message
          news:e2f$HoaPEH A.1312@TK2MSFTN GP12.phx.gbl...[color=blue]
          > Found it at ASPFAQ ...
          >
          > <head>
          > <STYLE TYPE="text/css">
          > P.breakhere {page-break-before: always}
          > </STYLE>
          > </head>
          >
          > then just put a ...
          >
          > <P CLASS="breakher e">
          >
          > ... wherever I want the form feed.
          >
          > Works a treat.
          >
          >
          >
          >[/color]


          Comment

          • PW

            #6
            Re: ASP formfeed ?


            "[ + 2 0 r p 3 ]" <garb@tpg.com.a u> wrote in message
            news:eIbJpbcPEH A.3476@tk2msftn gp13.phx.gbl...[color=blue]
            > and what does this have to do with asp?
            >
            > NOTHING!!!
            >[/color]


            Did you read my original post ? Here's a copy for ya. I can't help it if
            the solution to my problem happened to be CSS rather than ASP.
            Now take your pill.



            "PW" <pwa@NObigSPAMp ond.net.au> wrote in message
            news:OKnT4YaPEH A.1480@TK2MSFTN GP10.phx.gbl...[color=blue]
            > I'm creating an ASP to print labels for a client.
            >
            > How do you send a formfeed to the printer ?
            >
            >
            >[/color]


            Comment

            Working...