我正在尝试使用以下代码获取文字的文本值,以便可以使用 PreviousPage 将其传递到下一页,但字符串为空,我认为它会在 Page_Init 阶段之后清除值。
Public ReadOnly Property SendText() As String
Get
Return literal1.Text
End Get
End Property
有没有解决的办法?
我尝试使用以下方法访问下一页上的数据:
<%@ PreviousPageType VirtualPath="~/Spacing.aspx" %>
Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load
litTables.Text = PreviousPage.SendText
End Sub
更好的是,如果我可以将 SendText 设置为整个 div 的 HTML 内容,但我看到访问它的唯一方法是使用 JavaScript document.getElementById("tables").innerHTML,但我不明白我是如何可以使用 Get 将其合并到 ReadOnly 属性中。
我正在使用 Visual Studio Express For Web 2012。