|
I am using the WebBrowser.Print method to print html content that I have put into the WebBrowser through setting the WebBrowser.DocumentText.
When the document prints, at the top left of the page there is the Page Title (which I can set through <head><title>) and the page count. On the bottom right is the date. On the bottom left of every page, there is the text "about:blank". Presumably this is appearing since the url for the page is not set. However, it has absolutely no relevance to my users.
So how can I get rid of about:blank (or at least replace it with something more meaningful) when printing content inserted through WebBrowser.DocumentText?
|