Hi guys,$0$0$0$0I have created a small web application with your controls, and all my data displayed fine, I hand wrote the LINQ queries and had no problems at all. I then decided to enable the edit/delete modes for a couple of the grids I am making use of, and it visually seemed fine, so I presumed that it was working... how wrong I was!$0$0$0$0$0If you click "delete", it reloads the page, but nothing happens to the record.$0$0If you click "edit", you go into inline edit mode, make your changes, click "update", page reloads but all data is reset to what it was before your changes!$0$0$0$0$0I changed my LINQ query to a LINQ Database for one grid, just to test if that was perhaps the issue, and it seems that I am still having the same trouble. Could somebody help me figure out what exactly I am doing wrong here please?$0$0$0$0$0$0$0$0$0$0$0$0<fieldset> $0$0$0$0$0$0 <legend>Service History<asp:LinqDataSource ID="LinqDataSource1" runat="server" $0$0$0$0$0$0 ContextTypeName="db_vmmDataContext" $0$0$0$0$0$0 Select="new (ServiceDate, ServicedBy, InvoiceNo, Mileage, ServiceType, DateTyresLastPurchased, NextServiceDueMiles, NextServiceDueDt, MOTd, WhatWasDone)" $0$0$0$0$0$0 TableName="vmm_ServiceHistories" Where="VehicleID == @VehicleID"> $0$0$0$0$0$0 <whereparameters> $0$0$0$0$0$0 <asp:ControlParameter ControlID="lstVehicleSelectByReg" Name="VehicleID" $0$0$0$0$0$0 PropertyName="SelectedValue" Type="Int32" /> $0$0$0$0$0$0 </whereparameters> $0$0$0$0$0$0 </asp:LinqDataSource> $0$0$0$0$0$0 </legend> $0$0$0$0$0$0 <div> $0$0$0$0$0$0 <telerik:RadGrid ID="rpt_ServiceHistory" runat="server" skin="Hay" $0$0$0$0$0$0 GridLines="None" AutoGenerateDeleteColumn="True" DataMember="DefaultView" $0$0$0$0$0$0 DataSourceID="LinqDataSource1" AutoGenerateEditColumn="True" $0$0$0$0$0$0 AllowAutomaticDeletes="True" AllowAutomaticUpdates="True"> $0$0$0$0$0$0 <MasterTableView AutoGenerateColumns="True" datamember="DefaultView" datasourceid="LinqDataSource1" $0$0$0$0$0$0 editmode="InPlace"> $0$0$0$0$0$0 <RowIndicatorColumn> $0$0$0$0$0$0 <HeaderStyle Width="20px"></HeaderStyle> $0$0$0$0$0$0 </RowIndicatorColumn> $0$0$0$0$0$0 <ExpandCollapseColumn> $0$0$0$0$0$0 <HeaderStyle Width="20px"></HeaderStyle> $0$0$0$0$0$0 </ExpandCollapseColumn> $0$0$0$0$0$0 $0$0$0$0$0$0 </MasterTableView> $0$0$0$0$0$0 <FilterMenu EnableTheming="True"> $0$0$0$0$0$0 <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> $0$0$0$0$0$0 </FilterMenu> $0$0$0$0$0$0 </telerik:RadGrid> $0$0$0$0$0$0 </div> $0$0$0$0$0$0 </fieldset> $0$0$0$0$0$0$0