Hello,
I have a gridview which I bind to TypedView using LLBLGenProDataSource. I have checkboxes for selecting rows and a submit button, which updates the database (using entities). After submitting, when I say GridView1.DataBind(), it doesn't show the updated data, but the same data as the first time. Why?
This is the datasource :
<llblgenpro:LLBLGenProDataSource ID="LLBLGenProDataSource1" runat="server"
DataContainerType="TypedView" TypedViewTypeName="<dbname>.LLBLPro.TypedViewClasses.CandidateApproveAppTypedView, <dbname>.LLBLPro">
<SelectParameters>
<asp:SessionParameter Name="JurisdictionId" SessionField="JurisdictionId" />
</SelectParameters>
</llblgenpro:LLBLGenProDataSource>
Thanks.