tags:

views:

43

answers:

1

On one button click event i am inserting a row in a table after that i am generating a crystal report on that inserted row.

My problem is that i am not getting that row in the same event handler for that i need to refresh that table before generating the report.

Can any1 tell me how to refresh the table through c# code

A: 

You need to commit the insert before running the crystal report.

Mark Bannister