gramps/data/jhtmlarea/AutoPostTest.aspx.vb

10 lines
262 B
VB.net
Raw Normal View History

2012-05-28 17:17:15 +00:00

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