Hi,
i want to pass the date/time from one page to another page like this:
firts page:
---------
<asp:HyperLin k ID="HyperLink1 " NavigateUrl="my page.aspx?dat= & 'date.now'"
runat="server"> lijst</asp:HyperLink>
the code-behind of mypage.aspx
---------------------------------
Dim dd As Date
dd = Date.Parse(Requ est.QueryString ("dat"))
this gives the error: String was not recognized as a valid DateTime
Thanks for help
Bob
i want to pass the date/time from one page to another page like this:
firts page:
---------
<asp:HyperLin k ID="HyperLink1 " NavigateUrl="my page.aspx?dat= & 'date.now'"
runat="server"> lijst</asp:HyperLink>
the code-behind of mypage.aspx
---------------------------------
Dim dd As Date
dd = Date.Parse(Requ est.QueryString ("dat"))
this gives the error: String was not recognized as a valid DateTime
Thanks for help
Bob
Comment