0bf91f7708
svn: r22930
10 lines
262 B
VB.net
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
|