我試圖將一個日期控件的值從form1傳遞給form2。ASP:在Web表單之間傳遞值
的形式1.aspx.vb:
Public ReadOnly Property Property1() As Date
Get
Return StartDate.SelectedDate
End Get
End Property
在Form2.aspx:
<%@ PreviousPageType VirtualPath="~/form1.aspx" %>
在form2.aspx.vb:
Label14.Text = PreviousPage.Property1
當我運行它,編譯器給我一個錯誤:
"Object reference not set to an instance of an object."
用紅色標記:
Label14.Text = PreviousPage.Property1
試圖將廣告分配屬性爲一個字符串,它也不能工作。
任何建議???
問候。