I think the problem is trying to send it down to SS05 as a DateTime. Better
to send it as a String.
Unless, I've misunderstood SQLDataSource, I believe that you specify .NET
datatypes for your SP params, not SS datatypes.
In other words, write the SP to accept a varchar param, not a datetime param
..... in the SP, use format 'yyyymmdd' and CAST(@datetime1 AS datetime) will
work ..........
Honestly, I'm not sure the VS05 GridView is such a great invention ....
despite all the hype.
> Maybe use date.parse
>
[quoted text clipped - 18 lines]
>>
>> My table has a primary key defined on an Identity col.