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