Prn

Printout into page, along with additional function to decide where to put the enter when printing, saved a lot of my time and made it easier to get page code written in good fashion
subs here are Prn, PrnL, PrnLL, LPrn, LPrnL
L is where to put the enter (vbcrlf)
So instead of coding "Response.Write" every now and then, I just do "Prn something", or any of the other subs

CodeFunctionName
What is this?

Public

Tested

Imported
Function Prn(Strin)
Response.Write Strin
End Function
Function LPrn(Strin)
Prn vbcrlf & Strin
End Function
Function PrnL(Strin)
Prn Strin & vbcrlf
End Function
Function LPrnL(Strin)
Prn vbcrlf & Strin & vbcrlf
End Function
Function PrnLL(Strin)
Prn Strin & vbcrlf & vbcrlf
End Function

Strin

Views 3,343

Downloads 1,240

CodeID
DB ID

ANmarAmdeen
610
Attachments
Revisions

v3.0

Tuesday
January
7
2020