I have a report that has two filters. One is a string and the second one is a datetime. My expressions look like this:
=Fields.PoolType = =Parameters.PoolType and
=Fields.PoolDate = =Parameters.Date
I am getting the parameter information from a datasource that is pulling it from a view.
The PoolType is a string and the PoolDate is a DateTime
I am trying to use reportviewer in an aspx project and I get the following error.
I tried it as a test in the windows application and it worked just fine without an error but I really need it as a web application.
Thanks
=Fields.PoolType = =Parameters.PoolType and
=Fields.PoolDate = =Parameters.Date
I am getting the parameter information from a datasource that is pulling it from a view.
The PoolType is a string and the PoolDate is a DateTime
I am trying to use reportviewer in an aspx project and I get the following error.
Cannot perform '=' operation on System.DateTime and System.String.
I tried it as a test in the windows application and it worked just fine without an error but I really need it as a web application.
Thanks