cast from datetime type to smalldatetime type?

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default cast from datetime type to smalldatetime type?

    Hi,
    How can I cast from datetime type to smalldatetime type.
    I get the records from a table which has got a datetime type column but I
    want to display it smalldatetime format.
    Thanks,
    Salim


    Salim Afþar Guest

  2. Similar Questions and Discussions

    1. how to type cast getjsobject form vb.net to c#
      how to type cast getjsobject form vb.net to c#
    2. SQL Server DateTime Data Type
      When inserting a date into my SQL Server DB, I'm using the datetime Data Type. It displays the date in the format I want, but, it also displays the...
    3. Cast from type 'Field' to type 'String'
      Hi, Getting the above error - further info shown below Line 36: II2 = 0 Line 37: response.write ("var questions" & II & " = new Array();"...
    4. <<Error converting data type char to smalldatetime>>
      Hi All (IIS 5, SQL 2k, Win 2k) I'm stumped and can't find where I would be "mis-converting" data. I receive the following error ONLY when I update...
    5. Cast from type 'DBNull' to type 'String' is not valid error
      Trying to add an insert button Sub btnAddRow_Click event for adding a row to the datagrid and dataset back to SQL. Had it working per the...
  3. #2

    Default Re: cast from datetime type to smalldatetime type?

    I think you can use something like:

    response.write(dMyLongDate.tostring("dd/MM/yy"))

    Regards,

    Stu


    "Salim Afþar" <safsar@luckyeye.com> wrote in message
    news:%231j6NMDWDHA.2228@TK2MSFTNGP12.phx.gbl...
    > Hi,
    > How can I cast from datetime type to smalldatetime type.
    > I get the records from a table which has got a datetime type column but I
    > want to display it smalldatetime format.
    > Thanks,
    > Salim
    >
    >

    ---
    Outgoing mail is certified Virus Free.
    Checked by AVG anti-virus system ([url]http://www.grisoft.com[/url]).
    Version: 6.0.505 / Virus Database: 302 - Release Date: 30/07/2003


    Stu Guest

  4. #3

    Default Re: cast from datetime type to smalldatetime type?

    Not like that:
    I get it with sql string.I want to do something like that :

    select format(mydate,("dd/MM/yy"),.... from myTable

    Thanks a lot

    "Stu" <stuart@ntpcl.uk.com> wrote in message
    news:u2I$BVDWDHA.1352@TK2MSFTNGP10.phx.gbl...
    > I think you can use something like:
    >
    > response.write(dMyLongDate.tostring("dd/MM/yy"))
    >
    > Regards,
    >
    > Stu
    >
    >
    > "Salim Afþar" <safsar@luckyeye.com> wrote in message
    > news:%231j6NMDWDHA.2228@TK2MSFTNGP12.phx.gbl...
    > > Hi,
    > > How can I cast from datetime type to smalldatetime type.
    > > I get the records from a table which has got a datetime type column but
    I
    > > want to display it smalldatetime format.
    > > Thanks,
    > > Salim
    > >
    > >
    >
    >
    > ---
    > Outgoing mail is certified Virus Free.
    > Checked by AVG anti-virus system ([url]http://www.grisoft.com[/url]).
    > Version: 6.0.505 / Virus Database: 302 - Release Date: 30/07/2003
    >
    >

    Salim Afþar Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139