Make webapp work in trunk, copying changes from gramps40

svn: r22930
This commit is contained in:
Doug Blank
2013-08-29 12:23:58 +00:00
parent 6336e35a29
commit 0bf91f7708
59 changed files with 21 additions and 18 deletions

View File

@@ -0,0 +1,9 @@
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