Hi PHD,
replace # with ' surrounding your dates
Cheers!
Main Topics
Browse All TopicsDataView view = new DataView(data.syn_vAllActi
view.RowFilter =
"heure_rdv>=#" + celldate1.ToString() + "# and heure_rdv<#" + celldate2.ToString() + "# and heure_rdv2<=#" + celldate2.ToString() +"# and heure_rdv2>#" + celldate1.ToString() + "#" ;
Now I got this message.
I think this is from the format of the date ...
the problem is that I don't know the date format of the server where I will deploy the application. It is not the same as the server of development.
thank you,
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Andrew here is the error message now :
System.FormatException was unhandled by user code
Message="String was not recognized as a valid DateTime."
Source="mscorlib"
StackTrace:
at System.DateTimeParse.Parse
at System.DateTime.Parse(Stri
at System.Data.ConstNode..cto
at System.Data.ConstNode..cto
at System.Data.ExpressionPars
at System.Data.DataExpression
at System.Data.DataExpression
at System.Data.DataView.set_R
at PlanningDay.FillPlanningCe
at PlanningDay.DataGridDay_It
at System.Web.UI.WebControls.
at System.Web.UI.WebControls.
at System.Web.UI.WebControls.
at System.Web.UI.WebControls.
at System.Web.UI.WebControls.
at PlanningDay.LoadControl() in c:\Documents and Settings\sdd\My Documents\Visual Studio 2005\WebSites\e-Vision 2005\PlanningDay.ascx.cs:l
at Planning.Page_Load(Object sender, EventArgs e) in c:\Documents and Settings\sdd\My Documents\Visual Studio 2005\WebSites\e-Vision 2005\Planning.aspx.cs:line
at System.Web.UI.Control.OnLo
at System.Web.UI.Control.Load
at System.Web.UI.Page.Process
emoreau : I cannot because of this :
http://www.experts-exchang
this :
System.FormatException was unhandled by user code
Message="String was not recognized as a valid DateTime."
Source="mscorlib"
StackTrace:
at System.DateTimeParse.Parse
at System.DateTime.Parse(Stri
at System.Data.ConstNode..cto
at System.Data.ConstNode..cto
at System.Data.ExpressionPars
at System.Data.DataExpression
at System.Data.DataExpression
at System.Data.DataView.set_R
at PlanningDay.FillPlanningCe
at PlanningDay.DataGridDay_It
at System.Web.UI.WebControls.
at System.Web.UI.WebControls.
at System.Web.UI.WebControls.
at System.Web.UI.WebControls.
at System.Web.UI.WebControls.
at PlanningDay.LoadControl() in c:\Documents and Settings\sdd\My Documents\Visual Studio 2005\WebSites\e-Vision 2005\PlanningDay.ascx.cs:l
at Planning.Page_Load(Object sender, EventArgs e) in c:\Documents and Settings\sdd\My Documents\Visual Studio 2005\WebSites\e-Vision 2005\Planning.aspx.cs:line
at System.Web.UI.Control.OnLo
at System.Web.UI.Control.Load
at System.Web.UI.Page.Process
Thank you,
try this
"heure_rdv>=#" + Convert.ToDateTime(celldat
I am now putting these dates into the format yyyy MM dd HH:mm
so for example
2007 01 17 11:10
I mean a more elegant approach would be this
String.Format("heure_rdv>=
Business Accounts
Answer for Membership
by: REA_ANDREWPosted on 2007-01-17 at 02:58:11ID: 18331052
what error message do you now receive?