Hi, i've got a problem with a FormView not firing the PerformWork for one of my LLBLGenProDataSource. The datasource code is:
<llblgenpro:LLBLGenProDataSource ID="LLBLGenProDataSourceModCompany" runat="server"
CacheLocation="Session" DataContainerType="EntityCollection" EntityCollectionTypeName="oeg_intranet.CollectionClasses.CompaniesModeratedCollection, oeg_intranet" LivePersistence="False">
<SelectParameters>
<asp:QueryStringParameter DefaultValue="0" Name="CompanyFkid" QueryStringField="id" Size="10" Type="Int32"/>
</SelectParameters>
</llblgenpro:LLBLGenProDataSource>
it fires the PerformSelect ok. On clicking the Update button (which has the CommandName set to "Update"), it doesn't fire the PerformWork.
I set the FormView1.DataSourceID in the code within the Page_Load as i use 2 different LLBLGenProDataSource depending on how the user came to the page. One works fine, the one above doesn't. Are there any reasons for the PerformWork doesn't fire?
Thanks, Dan.