Link to home
Start Free TrialLog in
Avatar of irfantak
irfantak

asked on

ASP .NET C# Show Only Hourly DateTime values from an Array of 24 hour values.

Asp .net C#. Show only date/time values from a 24 hour period which are 3 hours apart. In the following code, dayArray has 360 date/time values. Each value is 4 minutes apart from the other ones. You can see the output of Response.Write in the following page: www.cameradisplay.com/CondorStats/TempDisplayTime.htm

So how I do I just show DateTime values like starting from the very first DateTime value to the next 1 hour DateTime value, and then the next 1 hour, until the end of all 24 hour values?

-------------------------
string[] dayArray = formatData.ToString().Split(new char[] { ',' });//split to create array
                             for (int i = 0; i < (dayArray.Length - 1); i++)
                {
                    DateTime curTime = Convert.ToDateTime(dayArray[i]);
                    DateTime displayTime = curTime.AddHours(3);
                    Response.Write(curTime + "<BR>");
                  //will show the ouput as //in www.cameradisplay.com/CondorStats/TempDisplayTime.htm
                }
----------------------------------------------------
ASKER CERTIFIED SOLUTION
Avatar of Elvio Lujan
Elvio Lujan
Flag of Argentina image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of irfantak
irfantak

ASKER

Thanks. Nah, not sure what your code is--DateTime.Now does not apply to my code--there is already a set of Date/Time values spanning 24 hours.. Okay, here is the current online output:

http://www.cameradisplay.com/CondorStats/CondorMachineStats.aspx?period=Day&chartenv=sl

and the code is

 string[] dayArray = formatData.ToString().Split(new char[] { ',' });
                for (int i = 0; i < (dayArray.Length - 1); i++)//because of the extra , at the end, loop to one less
                {
                    DateTime curTime = Convert.ToDateTime(dayArray[i]);
                    Response.Write(curTime + "<br>");

                }