Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Selecting dates in a Web form
Message
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
01229139
Message ID:
01229145
Views:
34
Hi, Gerard,

You should be able to store datetime values in Session Variables.
DateTime dtToday = DateTime.Today;
Session["SessDate"] = dtToday;

DateTime dt2 = (DateTime)Session["SessDate"];
I'd recommend passing them as parameters to a data access layer.

Hope that helps...
Kevin
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform