我正在利用自由卫星软件接收用户,并在数据库中以超文本格式储存这些信息。 用户意见摘要如下:
133 Peachtree St NE
,《亚特兰大》,GA 303
404-652-77Cindyqiaobr/>www.somecompany.com
。 产品管理:产品管理 测试 St
Atlanta,GA 303
试验
我希望超文本工作员能保护用户进入的白色空间,但会将其排除在外。 是否有办法保护用户的白色空间? 下文是我如何编写我国人民抵抗力量文件的一个例子。
公共共同创建 PreviewPDF
Dim output As New MemoryStream()
Dim oDocument As New Document(PageSize.LETTER)
Dim writer As PdfWriter = PdfWriter.GetInstance(oDocument, output)
Dim oFont As New Font(Font.FontFamily.TIMES_ROMAN, 8, Font.NORMAL, BaseColor.BLACK)
Using output
Using writer
Using oDocument
oDocument.Open()
Using sr As New StringReader(vsHTML)
Using worker As New html.simpleparser.HTMLWorker(oDocument)
worker.StartDocument()
worker.SetInsidePRE(True)
worker.Parse(sr)
worker.EndDocument()
worker.Close()
oDocument.Close()
End Using
End Using
HttpContext.Current.Response.ContentType = "application/pdf"
HttpContext.Current.Response.AddHeader("Content-Disposition", String.Format("attachment;filename={0}.pdf", vsFileName))
HttpContext.Current.Response.BinaryWrite(output.ToArray())
HttpContext.Current.Response.End()
End Using
End Using
output.Close()
End Using
End Sub