Hi All;
I use DNN 3.2.2 and want to make a commerce module with C#.
But I’ve got a problem with datagrid template column at the product.ascx page of my module. There is an hyperlink when I click on it, should transfer from product.ascx to productEdit.ascx. unfortunately this line does not respond correctlly:
<asp:HyperLink id="editLink" NavigateUrl='<%# EditURL("ProductID", DataBinder.Eval(Container.DataItem,"ProductID")) %>' Visible="<%#IsEditable%>" runat="server">
In fact, when I delete it, datagrid works properly and shows all retrieved data. But when I add it, raise this error:
A critical error has occurred.
MinMax persistance type of cookie requires a ModuleId
I guess the problem should be related to EditURL method, Could you please tell me how can I solve this error?
Any comment or suggestion would be truly appreciated.