User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the C# section within the Software Development category of DaniWeb, a massive community of 423,545 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 4,012 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our C# advertiser: Programming Forums
Views: 5611 | Replies: 5 | Solved
Reply
Join Date: Jan 2007
Posts: 36
Reputation: cassyjack is an unknown quantity at this point 
Rep Power: 2
Solved Threads: 0
cassyjack's Avatar
cassyjack cassyjack is offline Offline
Light Poster

ToString to Display day of the week

  #1  
Jan 18th, 2007
OK I had C/C++ programming classes a few years ago and now I'm taking a ASP.net class and programming in C#. I need a little help with an assingment. We have to create an if state to display text depending on if the day of the week is a weekday vs weekend. I was able to get the time to dispaly ok. This next step I was taking before I created my if conditions was to try and display the day of the Week. Which I am unable to do. Any help would be appreciated. Also I don't have a compiler to test my code. I was trying to view the errors in IE. I added a web.config file to the root of my directory but it still does not give my an error description. Not sure if I have it in the correct place.

Here is the code for my program:

[
<script Language="c#" runat="server">
  void Page_Load() 
  {
    
    DateTime CurrentTime;
    DateTime MyTime;
    CurrentTime = DateTime.Now;
    MyTime = DayOfWeek.Now;
    message1.Text = "<br>The current time is:  " + CurrentTime;
    message2.Text = "<br>The Day of the week is: "+ MyTime.DayOfWeek.ToString();
  }
 
</script>
<html>
<head><title>Assignment2</title></head>
<body>
   <h1>Assignment 2</h1>
       Cassandra Jackson ECT 310</a>
   <asp:label id="message1" runat="server"/>
   <asp:label id="message2" runat="server"/>
                              
</body>
 
</html>
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Oct 2006
Posts: 86
Reputation: TylerSBreton is an unknown quantity at this point 
Rep Power: 3
Solved Threads: 3
TylerSBreton's Avatar
TylerSBreton TylerSBreton is offline Offline
Junior Poster in Training

Re: ToString to Display day of the week

  #2  
Jan 19th, 2007
Shouldn't MyTime = DayOfWeek.Now; be something like MyTime = (DateTime.Now);. Then you should be able to do MyTime.DayOfWeek since DayOfWeek is a property of the DateTime class, so should be called on an instance variable of that class.

I havent fiddled too much with the DateTime mechanism yet in C#, but this seems like it should work.

Regards,

Tyler S. Breton
Last edited by TylerSBreton : Jan 19th, 2007 at 11:05 am.
Western New England College '08
Computer Science

Programming Lang's:

C, C#, Java, Lisp, MASM, Visual Basic 6
Reply With Quote  
Join Date: Jan 2007
Posts: 36
Reputation: cassyjack is an unknown quantity at this point 
Rep Power: 2
Solved Threads: 0
cassyjack's Avatar
cassyjack cassyjack is offline Offline
Light Poster

Re: ToString to Display day of the week

  #3  
Jan 19th, 2007
Thanks A Bunch It Worked.
Reply With Quote  
Join Date: Jan 2007
Location: Islamabad , Pakistan
Posts: 8
Reputation: Aun Muhammad is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 1
Aun Muhammad Aun Muhammad is offline Offline
Newbie Poster

Help Re: ToString to Display day of the week

  #4  
Jan 23rd, 2007
you can do as follows:


mydate=system.date.now.date;
date sdate;
sdate=mydate.dayofweek(); /////it will return actual day e.g.
sunday, monday,etc
if (dayofweek==weekday)
/////do some thing

try it
best of luck
Reply With Quote  
Join Date: Jan 2007
Posts: 1
Reputation: RichardCh is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 1
RichardCh RichardCh is offline Offline
Newbie Poster

Re: ToString to Display day of the week

  #5  
Jan 30th, 2007
Try this:
        public static bool IsWeekday(DateTime dtInput)
        {
            return ((dtInput.DayOfWeek == DayOfWeek.Saturday) || (dtInput.DayOfWeek == DayOfWeek.Sunday)) ? false : true;
        }

If it's a weekday, it returns true, otherwise false.
Last edited by RichardCh : Jan 30th, 2007 at 12:11 pm. Reason: added comment
Reply With Quote  
Join Date: Dec 2006
Location: Kikinda, Vojvodina, Serbia, Europe, Planet Earth
Posts: 36
Reputation: Maidomax is an unknown quantity at this point 
Rep Power: 2
Solved Threads: 0
Maidomax Maidomax is offline Offline
Light Poster

Re: ToString to Display day of the week

  #6  
Jan 31st, 2007
Originally Posted by RichardCh View Post
Try this:
        public static bool IsWeekday(DateTime dtInput)
        {
            return ((dtInput.DayOfWeek == DayOfWeek.Saturday) || (dtInput.DayOfWeek == DayOfWeek.Sunday)) ? false : true;
        }

If it's a weekday, it returns true, otherwise false.
Simple.Nice.Works.
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

DaniWeb C# Marketplace
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

Thread Tools Display Modes

Similar Threads
Other Threads in the C# Forum

All times are GMT -4. The time now is 5:53 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC