Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7807121
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T02:45:14+00:00 2026-06-02T02:45:14+00:00

I am building an appointment booking system web application in asp.net in VB, Im

  • 0

I am building an appointment booking system web application in asp.net in VB,

Im simply trying to check whether an appointment has been made on a date selected from the calendar control. I am using Linq for the bindings but the format from the calendar is mmddyyyy when i need ddmmyyyy, my appointments entered int sql table as are 20/09/2012 10:00:00

trying to use a linq from p in db.apps
where p.date=mycontrol.selecteddate

does not yield results

some code added:-

 Dim myDate As Date = appCalender.SelectedDate



        Dim stat = From a In db.Appointments
                 Where a.dateAndTime = DateTime.Parse(myDate).ToString("ddMMyyyy")
                 Select New With {a.dateAndTime}

        Dim myList As List(Of String) = Nothing
        For Each a In stat

            myList.Add(a.dateAndTime)

        Next

        ListBox1.DataSource = myList
        ListBox1.DataBind()

im not sure if the code DateTime.Parse,,,, is right, there are many appoinments on the selected date which i select from the calendar but i think the DateTime format is not translating into SQL correctly

The appointment datatype in SQL is datetime

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T02:45:15+00:00Added an answer on June 2, 2026 at 2:45 am

    You aren’t comparing the same datatypes.

    Where a.dateAndTime = DateTime.Parse(myDate).ToString("ddMMyyyy")
    

    If the column in your database (and Linq) is a DateTime, the value on the right of the “=” is a string. It won’t match up. Try this?

    Where a.dateAndTime = DateTime.Parse(myDate)
    

    EDIT

    Also, it looks like you are only getting the Date from your calendar, not the time:

    Dim myDate As Date = appCalender.SelectedDate
    

    But you say your dates are stored as “20/09/2012 10:00:00”

    20/09/2012 10:00:00 != 20/09/2012 00:00:00

    Which is probably what is happening.

    Try this

    Dim myDate As DateTime =  DateTime.Parse(appCalender.SelectedDate)
    
    Dim stat = From a In db.Appointments
               Where a.dateAndTime >= myDate And a.dateAndTime < myDate.AddDays(1)
               Select New With {a.dateAndTime}
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Building a new ASP.net application, and planning to separate DB, 'service' tier and Web/UI
Building a Monodroid application we've been using Protobuf-net for serialization. It works in debug
Background I'm well into building a central appointment booking system for various service providers.
Building on what has been written in SO question Best Singleton Implementation In Java
Building a sample ASP.NET MVC app. Using the Membership API for authentication. For whatever
i building a small windows service (not a web service) that periodically check for
Building a client-side swing application what should be notified on a bus (application-wide message
Building a new Mobile Web Platform for Mobile Users to purchase & download content
Building a website that has English & Japanese speaking users, with the Japanese users
Building my first SL MVVM application (Silverlight4 RC) and have some issues i don't

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.