The reason for your error is because label is assigned to string. as the solution of the above person, we guess you want to assign value to text of the label control, so try the above answer.
Best regards,
Jolie
MSDN Community Support
Please remember to click "Mark as Answer" the responses that resolved your issue.
If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.
Member
399 Points
1101 Posts
Error On Eval Column Total
Jan 12, 2017 06:24 PM|asp.ambur|LINK
Hi
This is my aspx code
and my c# asp.net Code Behind
Why im getting this below error
Message: CS0019: Operator '+=' cannot be applied to operands of type 'System.Web.UI.WebControls.Label' and 'decimal'
Contributor
2340 Points
807 Posts
Re: Error On Eval Column Total
Jan 12, 2017 06:46 PM|codemovement.pk|LINK
what you are trying to do in this line
Get more information: http://codemovement.pk
Thanks,
Member
399 Points
1101 Posts
Re: Error On Eval Column Total
Jan 12, 2017 07:17 PM|asp.ambur|LINK
adding column values L4
Contributor
2340 Points
807 Posts
Re: Error On Eval Column Total
Jan 12, 2017 09:03 PM|codemovement.pk|LINK
then do it like this
Get more information: http://codemovement.pk
Thanks,
All-Star
52683 Points
15720 Posts
Re: Error On Eval Column Total
Jan 12, 2017 11:11 PM|oned_gk|LINK
use gv databound event and loop the rows
before loop, set total to zero
Suwandi - Non Graduate Programmer
Contributor
5290 Points
2307 Posts
Re: Error On Eval Column Total
Jan 13, 2017 10:32 AM|AngelinaJolie|LINK
Hi ambur,
The reason for your error is because label is assigned to string. as the solution of the above person, we guess you want to assign value to text of the label control, so try the above answer.
Best regards,
Jolie
Please remember to click "Mark as Answer" the responses that resolved your issue.
If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.
All-Star
52683 Points
15720 Posts
Re: Error On Eval Column Total
Jan 16, 2017 01:40 AM|oned_gk|LINK
Suwandi - Non Graduate Programmer