I have a list with 3 fields in Sharepoint 2010: ID (counter), Description (String) and ProductCode (Business Data). All works fine if I use the user interface and I'm able to choose che ProductCode from the BCS entity. Now I need to write code to insert items in this list. I simply use this:

element["Description"]=var1;
element["ProductCode"]=var2;
element.Update();

The problem is that ProductCode is not recognized as a good value and, if I try to edit the item, che user interface show no value.

Any suggestion?

link|improve this question
feedback

1 Answer

Hi y solve my problem addig the < SharePoint : FormDigest ID="MyFormDigest" runat="server"/ > tag in te acsx jus like this:

`<%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %>

<%@ Assembly Name="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>

<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>

<%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>

<%@ Register Tagprefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %> <%@ Import Namespace="Microsoft.SharePoint" %>

<%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="MiCuentaForml.ascx.cs" Inherits="MiCuenta.VisualWebPart1.VisualWebPart1UserControl" %> ` < SharePoint:FormDigest ID="MyFormDigest" runat="server"/ >

Grettings

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.