Working on note HTML edits

svn: r19685
This commit is contained in:
Doug Blank
2012-05-28 17:17:15 +00:00
parent 9f63d657cd
commit 8bcc160985
44 changed files with 19577 additions and 16 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