Reputation: 565
I am placing my above code in the screen shot as
On placing this line I mean storing value to viewstate issue is coming, on deleting this line issue get resolves.
Whats the issue I dont know, Please suggest
Upvotes: 2
Views: 60
Reputation: 56869
As the error says, you need to mark your CommissionDistributionInfo
class with the [Serializable] attribute.
[Serializable]
public class CommissionDistributionInfo
{
// implementation...
}
Upvotes: 2