Tom,
There are a number of choices to do so.
Depending on your needs, you could use Server.Transfer or Response.Redirect
and the query string.
To use the query string
Response.Redirect("pagetwo.aspx?date=" & selectedDate.ToString)
Then on page two:
Dim Date As Date = CType(Request.Querystring.Item("date"), Date)
If you want to use Server.Transfer (Which would be more suited if a number
of variables need to be passed to the second page.) I suggest reading up on
it a bit more. It's fairly easy to do, but can be confusing for the user
because they are moved to page two but their browser's address bar will
still display the first page's url.
If you want some quick code samples I have some in the code library of my
web site:
www.aboutfortunate.com. Just use the search box in the code
library area and input: "Server.Transfer".
Sincerely,
--
S. Justin Gengo, MCP
Web Developer
Free code library at:
www.aboutfortunate.com
"Out of chaos comes order."
Nietzche