gramps/data/jhtmlarea/AutoPostTest.aspx.vb
2013-08-29 12:23:58 +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