up vote 0 down vote favorite
share [g+] share [fb]

I am using a Session Parameter on an ObjectDataSource. It works fine on the local development machine but I get this error after copying the website to the production server:

Type 'System.Web.UI.WebControls.SessionParameter' does not have a public property named 'DbType'.

link|improve this question

feedback

8 Answers

up vote 0 down vote accepted

Me again!

First Answer I gave was WRONG!
Correct answer is that .NET Framework v3.5 was installed, and it needs to be updated to .NET framework 3.5 SP1

link|improve this answer
feedback

I found the answer but I don't know why it does this.

I just removed the DBType property and it worked fine.

link|improve this answer
Just had the same thing happen to me. Maybe the dev box is loading 3.5 assemblies and the production site is loading 2.0? – Will Dec 14 '08 at 20:05
feedback

I change DbType to Type and this got the site working.

link|improve this answer
feedback

Travis' answer gave me a clue, but perhaps it could be stated better thusly:

Somehow, in copying the website to the production server, a number of the parameter objects (Specifically, those with type GUID) had the "Type"="Guid" element changed to "DBType"="Guid".

e.g parameter should be:

NOT

link|improve this answer
feedback

Confirmed: This requires .NET Framework 3.5 SP1 update.

link|improve this answer
feedback

Wow I also removed DbType="Date" and it started working. did'nt even bother publishing, just changed it on the server with notepad. Thanks

link|improve this answer
feedback

well. you should change it. eg. if it is DbType="Guid" then change it to Type="Object"

link|improve this answer
feedback

The solution is replace DBType by Type. And find the Ansi especification.

By example I have this code:

DBType ="AnsiString"  

an change it by

Type="String"  

and working fine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.