Files
gramps/src/plugins/webstuff/jhtmlarea/AutoPostTest.aspx.vb
Doug Blank 8bcc160985 Working on note HTML edits
svn: r19685
2012-05-28 17:17:15 +00:00

10 lines
262 B
VB.net

Partial Class PostTest
Inherits System.Web.UI.Page
Public Sub PostTest_Load(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Load
txtText.Value = Request("txtText")
litText.Text = txtText.Value
End Sub
End Class