gramps/data/jhtmlarea/AutoPostTest.aspx.vb

10 lines
262 B
VB.net
Raw Normal View History

2012-05-28 22:47:15 +05:30

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