Ask a Question related to ASP.NET General, Design and Development.
-
Jake #1
dateTime = Null problem
Hi All,
I have an object that ahs a property of time dateTime,
this property is set to the contents of a DateTime field
in the database(SQL Server).
The problem I am haveing is that if the dataabase field
is Null and the object property is set to the contense of
that field. And I then assign the object proberty to the
value of a control the control value is set to 01/01/0001
instead of "". Any ideas on how to acheive this?
I can initialize teh value of the property to
say "1/1/1900" and test for that but is the a neater way?
And if i test for Isdate() i recieve an error.
Thanks in advance
Cheers Jake
Jake Guest
-
DateTime Problem with .NET WebService
I am using Flash with the WebService class (via actionscript) to interact with an ASP.NET 2.0 XML Web Service. When retrieving information that is... -
DateTime problem
Hi, I posted a question a few days ago in the Getting Started board but never got an answer. But I have figured out where my problem lies-- it has... -
NULL To DateTime field through sp
How can I insert null value into a datetime field through stored procedure? i use cybase,cf 4 -
update row with null numeric or datetime dataset cell values in a datagrid
I keep getting the, now, dreaded "System.FormatException: String was not recognized as a valid DateTime" error when updating a datagrid row that has... -
Set a datetime field to Null
Hi I created a record set at client side and added a coulmn as date time DBRS = CreateObject("ADODB.RecordSet") DBRS.Fields.Append... -
Souri Challa #2
Re: dateTime = Null problem
Jake,
You might want to retrieve it from the backend as
'isnull(<databasefieldname>,'01/01/1900')
-Souri
"Jake" <reachJake@hotmail.com> wrote in message
news:0fcc01c34cd2$0c2106c0$3501280a@phx.gbl...> Hi All,
>
> I have an object that ahs a property of time dateTime,
> this property is set to the contents of a DateTime field
> in the database(SQL Server).
>
> The problem I am haveing is that if the dataabase field
> is Null and the object property is set to the contense of
> that field. And I then assign the object proberty to the
> value of a control the control value is set to 01/01/0001
> instead of "". Any ideas on how to acheive this?
>
> I can initialize teh value of the property to
> say "1/1/1900" and test for that but is the a neater way?
>
> And if i test for Isdate() i recieve an error.
>
> Thanks in advance
>
> Cheers Jake
Souri Challa Guest



Reply With Quote

