Domanda

Rapida panoramica

  • Il tentativo di inserire un oggetto di business utilizzando ObjectDataSource (su un GridView)
  • il seguente errore

ObjectDataSource 'ObjectDataSource1' non ci sono valori da inserire. Controllare che dizionario dei 'valori' contiene i valori.

Progetto di installazione

  • persona - Simple Object manichino Affari (nome e l'età)
  • PersonBinder - Contiene i metodi per il DataSource Object (selezionare e inserire in questo caso)
  • InsertGrid - semplice griglia (eredita GridView) aggiungere un pulsante "Add" sul piè di pagina, che chiama inturn inserimento del DataSource
  • predefinito - pagina ASPX, detiene il Grid e origine dati, (vale Inserire params al DataSorce)

Nota ho aggiunto TODO commenta intorno, quello che penso sono aree chiave

il codice

Persona Binder Perdendo la persona (il suo get 2 proprietà) Ecco il legante

/// <summary>
/// A binding Class.
/// </summary>
public class PersonBinder
{

    public IEnumerable<Person> Select()
    {
        List<Person> people = new List<Person>();

        for (int i = 0; i < 9; i++)
        {
            Person person = new Person();
            person.Name = "Name " + i.ToString();
            person.Age = i;
            people.Add(person);
        }

        return people;
    }


    public void Insert(Person p)
    {
        //TODO: the Insert Method
        //errors before this.
    }
}

InsertGrid

public class InsertGrid : GridView
{
    protected override void OnInit(System.EventArgs e)
    {
        base.OnInit(e);
        ShowFooter = true;
        DataBind();
    }


    /// <summary>
    /// here to handle button clicks.
    /// </summary>
    private void ModeCommand(object sender, CommandEventArgs e)
    {
        switch (e.CommandName)
        {
            case "Add":

                //ObjectDataSource objectDataSource = DataSource as ObjectDataSource;
                ObjectDataSource objectDataSource = Parent.FindControl(DataSourceID) as ObjectDataSource;

                if (objectDataSource != null)
                {
                    //TODO: Errors HERE!
                    objectDataSource.Insert();
                }
                break;

        }


    }

    /// <summary>
    /// Raises the <see cref="E:System.Web.UI.WebControls.GridView.RowDataBound"/> event.
    /// </summary>
    /// <param name="e">A <see cref="T:System.Web.UI.WebControls.GridViewRowEventArgs"/> that contains event data.</param>
    protected override void OnRowDataBound(GridViewRowEventArgs e)
    {
        base.OnDataBound(e);
        //add an insert button
        if (e.Row.RowType == DataControlRowType.Footer)
        {

            ImageButton ibtnAdd = new ImageButton();
            ibtnAdd.ID = "Add";
            ibtnAdd.CommandName = "Add";
            ibtnAdd.ToolTip = "Add new Item";
            ibtnAdd.ImageAlign = ImageAlign.AbsMiddle;
            ibtnAdd.Style.Add("cursor", "pointer");
            ibtnAdd.CausesValidation = true;
            ibtnAdd.Command += ModeCommand;
            ibtnAdd.Enabled = true;
            e.Row.Cells[0].Controls.Add(ibtnAdd);

        }
    }
}

HTML predefinito

<form id="form1" runat="server">
<div>

    <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" 
        DataObjectTypeName="GridViewSample.Person" InsertMethod="Insert" 
        SelectMethod="Select" TypeName="GridViewSample.PersonBinder">
    </asp:ObjectDataSource>
</div>
<br />
<cc1:InsertGrid ID="InsertGrid1" runat="server" AutoGenerateColumns="False" 
    DataSourceID="ObjectDataSource1">
    <Columns>
        <asp:BoundField DataField="Name" HeaderText="Name" SortExpression="Name" />
        <asp:BoundField DataField="Age" HeaderText="Age" SortExpression="Age" />
    </Columns>
</cc1:InsertGrid>
</form>

di default CodeBehind

public partial class _Default : System.Web.UI.Page
{
    protected override void OnInit(EventArgs e)
    {
        base.OnInit(e);
        //TODO: here is the insert PARAMs. what am i missing.
        ObjectDataSource1.InsertParameters.Add("Name", "");
        ObjectDataSource1.InsertParameters.Add("Age", "0");
    }

    protected void Page_Load(object sender, EventArgs e)
    {
        //TODO: Tried this too
        IDataSource ds = ObjectDataSource1;
        DataSourceView view = ds.GetView(InsertGrid1.DataMember);
        Dictionary<string, string> values = new Dictionary<string, string>();
        values.Add("Name", "");
        //values.Add("Age", "0");

        view.Insert(values, delegate { return false; });
    }
}
È stato utile?

Soluzione

Di seguito realtà non funziona.

IDataSource ds = ObjectDataSource1;
DataSourceView view = ds.GetView(InsertGrid1.DataMember);        
Dictionary<string, string> values = new Dictionary<string, string>();        
values.Add("Name", "");        
//values.Add("Age", "0");        
view.Insert(values, delegate { return false; });

quello che dovevo fare era di rimuovere / sostituire il

//TODO: Errors HERE!                   
objectDataSource.Insert(); 
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top