Hi!
I am working on asp.net 2.0 with sql server 2005 as the backend.i am using crystal report for my application.in this i have got a column(by name Rtotal01) which makes use of the running total field to summarise two other columns.now i want to insert the values of this column into the database.i gave this command:
insertCmd.Parameters.Add(new SqlParameter("@ABC",RTotal01.Text));
where ABC is the column name in my database where i want to insert the RTotal01 values.
i got the following error:The name RTotal01 does not exist in the current context.so how do i insert the column values into the database?is there any way out.kindly help.thanking in advance.