How To Get The Inserted Id Or Object After An Insert With The FormView/ObjectDataSource Controls

Feb 22, 2010

I have a series of classes that loosely fit the following pattern:

public class CustomerInfo {
public int Id {get; set;}
public string Name {get; set;}
public class CustomerTable {
public bool Insert(CustomerInfo info) { /*...*/ }
[code]...

View 1 Replies


Similar Messages:

DataSource Controls :: Objectdatasource Return Inserted Object Like LinqDatasource Do?

Mar 5, 2010

I would like the ObjectDatasource insert and update data methods to return the inserted or updated object like LinqDataSource do.

View 2 Replies

Forms Data Controls :: FormView Insert - Data Not Being Inserted In Database

Feb 9, 2010

I'm trying make FormView insert a new row into a database table via a stored procedure.My code runs without error but nothing appears in the database table.

View 14 Replies

DataSource Controls :: Getting The ID Of The Inserted Item Using ObjectDataSource?

Aug 4, 2010

Im using Objectivation as a DAL with GridView !

I would like to link item when i create it with the InsertMethode :

I have this 2 table :

Item ( id, name )

ItemRelation( idrelation, idParentItem, idSonItem)

I have a page with a gridview with the liste of item in relation with another item (Same table) : Select * From Item where id IN ( Select idSonItem where idParentItem = @TheItem )

When i add an item from this grid i would like to link it with the current Item : So I insert the Item with the GridView InsertMethod then I do another Query an the ItemRelation with idParentItem as the courant Item and the Inserted Item as the idSonsItem !

so the question is : How to get the id of an inserted Item after i get executed the InsertMethod ?

View 4 Replies

DataSource Controls :: Using ObjectDataSource With Dataset, Retreive Last Inserted ID?

Jan 23, 2011

I've done a lot of searching on this here but I can't seem to find anyone who has done this. I'm sure it's a common problem but I can't figure out the right keywords to search for the solution so I'm sorry if this is a duplicate.I have a dataset where I've used the Generate Insert, Update, and Delete statements as well as the Refresh the Data Table options so that I can retrieve the last inserted ID when I'm using an ObjectDatasource.however, when I'm handling the ObjectDataSource-Inserted method, I'm getting a 1 as a return value, which I assume is the affected rows. I don't want that, I want the ID so that I can use it in my code.I looked at the generated code for the insert method and it is doing a SELECT after inserting, but it returns the whole row not the ID, so how can I get at this row to retrieve the value?

View 6 Replies

Forms Data Controls :: Finding The Last Row Inserted Into Gridview Via ObjectDataSource Control

Feb 16, 2010

I have an object data source control. and to insert the control I add the object to the database then call databing on the gridview the DataSource control is bound to.

My question is - how would I know where the newly added row is? I can'y go by id, because the dbase creates the id.

I'm thinking maybe last data key, but based on the sort that would be accurate.

View 7 Replies

Forms Data Controls :: How To Get ID Value From Item Inserted Into Formview

Jan 24, 2010

how can I get the ID of the item that inserted into a formview? I want the ID to appear in a textbox right after the insert. How can I do this?

View 2 Replies

Forms Data Controls :: Value Inserted Into SQL By FormView Gets Truncated

Jan 20, 2011

I have a SQL 2005 database table with a column that has a datatype of nvarchar(255). It holds URLs.I created a FormView to edit records in the SQL table. The value for this column gets put in a TextBox in the FormView.When trying to edit the record, any text placed in the textbox gets truncated at 50 charactersI checked the TableAdapter in my dataset, and in the properties for that column, it has "255" for MaxLength.

View 4 Replies

Forms Data Controls :: Checking A Value In A Method Before It's Inserted (Formview C#)

Nov 18, 2010

I've been pickling my brain trying to do this for a couple of days but to no avail. I have the following in "FormView1" which I'm just using in insert mode:

<td class="style4">
<asp:TextBox ID="urlTextBox" runat="server" Text='<%# Bind("url") %>' CausesValidation="True" Width="200px" />
</td>

I'd like the contents (i.e. whatever the user wants to insert) to be passed to a method where it will be checked against any existing values in the database.

View 4 Replies

Get Id Of Last Inserted Item In Objectdatasource Using DataSet?

Jan 23, 2011

I've done a lot of searching on this her on SO but I can't seem to find anyone who has done this. I'm sure it's a common problem but I can't figure out the right keywords to search for the solution so I'm sorry if this is a duplicate.I have a dataset where I've used the Generate Insert, Update, and Delete statements as well as the Refresh the Data Table options so that I can retrieve the last inserted ID when I'm using an ObjectDatasource.however, when I'm handling the ObjectDataSource-Inserted method, I'm getting a 1 as a return value, which I assume is the affected rows. I don't want that, I want the ID so that I can use it in my code.I looked at the generated code for the insert method and it is doing a SELECT after inserting, but it returns the whole row not the ID, so how can I get at this row to retrieve the value?

View 1 Replies

Forms Data Controls :: How To Show Inserted Information After Iteminserted Event In A Formview

Jan 24, 2010

I have a formview that use the formview iteminserted event. The information inserts into the formview fine, but all cells blank out after the insert. How can I make it so I can show all the values I have inserted show up in the formview after the inteminsertedevent?

View 1 Replies

Forms Data Controls :: FormView Must Be In The Insert Mode To Insert A Record?

Jan 21, 2011

I use GridView & FormView to update a record. but when I click the "save" button, throw an except : FormView must be in the insert mode to insert a record. The record has been updated success, and I didn't change the mode of the FormView, how this error comes?

View 3 Replies

Forms Data Controls :: How To Set The Selectedvalue Of A Dropdownlist With Another Objectdatasource Used For Formview

Aug 10, 2010

I'm using a FormView which has odsMain as the datasource. I am also using a dropdownlist which is being populated with objectdatasource odsddl.

I'd like to set the selectedvalue of the dropdownlist with the value contained in odsMain (the current record value for it). Is there any way this can be done?

View 6 Replies

DataSource Controls :: Linq / ObjectDataSource With Only A Few Database Fields On Formview

Feb 24, 2010

I am working on an application and am attempting to use Linq with and ObjectDataSource but I only want to display/update 50% of the fields that are in the corresponding table. It appears to me that for this to work correctly, I need hidden fields on my form for all of the data fields from the table that the user cannot access. Is this the only way to do this? I have the following in my update method of my ODS:

[Code]....

The problem is, only the fields that appear on the form have data in them.

View 1 Replies

Forms Data Controls :: GridView Inside FormView With ObjectDataSource

Mar 20, 2010

I have an ObjectDataSource giving me data similar to: OrderNumber OrderDate OrderValue OrderItems The first three are simple data types and the last has multiple occurrences of another class: OrderLineNumber OrderItem OrderQuantity The ObjectDataSource will only contain one row (which might make things simpler). So, there will be one OrderNumber, OrderDate and OrderValue; and then several occurrences of OrderItems (each containing OrderLineNumber, OrderItem and OrderQuantity).

I am displaying OrderNumber, OrderDate and OrderValue in the FormView - that work's fine, as expected. I have placed a GridView within the FormView and am failing miserably to get it to bind to OrderItems. I have tried the obvious things like specifying "odsWhatever.OrderItems" as the DataSourceID for the GridView, but to no avail.

View 4 Replies

Forms Data Controls :: FormView - Set ObjectDataSource And Readonly Properties

Mar 25, 2011

I have a FormView bound to an ObjectDataSource that is bound to a business logic object. The business logic object has a Readonly field called "Id". When I try to update the formview, I get the following error message: The 'Id' property on the type specified by the DataObjectTypeName property in ObjectDataSource 'ObjectDataSourceNewsArticle' is readonly and its value cannot be set. How do I get the ObjectDataSource or the FormView to recognise that the id field is readonly, and to not try to update it?

View 3 Replies

Forms Data Controls :: FormView Refresh Schema With ObjectDataSource Not Working

Jan 22, 2011

I'm having a problem with a FormView control that I have bound to an ObjectDataSource. The problem is that the FormView control is not automatically filled in with the public properties of the object linked by an ObjectDataSource control when I select refresh schema. Everything compiles and I can add fields manually, but there are a lot of properties in the class and I do not want to deal with adding all the fields by hand. It's not the end of the world of course if I have to add them manually, but I'm bothered more by the fact that it doesn't act the other formviews.

Has anyone ever experienced a problem like this? I have other objectdatasource controls with other formviews that properly refresh their schemas. I noticed that in the objectdatasource control that is giving me problems, the DataObjectTypeName field is not automatically set as it is in the others. However, after adding it manually it still doesn't refresh the schema. I'm using Visual Studio 2010. Defined in .aspx page:

[Code]....

The SPFModuleBLL class contains the GetModule2() method which is shown here:

[Code]....

View 3 Replies

Forms Data Controls :: Get Identity Of Inserted Record Using Detailsview.insert()

Dec 6, 2010

This would seem to be quite a trivial task, however I am having trouble retrieving the identity of the record inserted using the detailsview.insert() in the code behind. It would seem that detailsview.DataKey.Value would contain this value, but it is null after the insert is performed.

View 4 Replies

DataSource Controls :: Data Not Get Inserted Even Insert Query Execute Successfully?

Mar 31, 2010

i made one window base application in VS2008 (VB.net). i made one simple code where i can insert data.and after inserting i can see that data on grid.when i am inserting data insert query runs perfect.after that for debugging purpose i fire select query and get result in dataset and its show data too.but when go
into database my inserted data not showing there.

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim con_str As String = "Data Source=.SQLEXPRESS;AttachDbFilename=|DataDirectory|Database1.mdf;Integrated Security=True;User Instance=True"
Dim con As SqlConnection = New SqlConnection(con_str)
Dim cmd, cmd2 As SqlCommand
Dim adp As New SqlDataAdapter.....

View 2 Replies

Forms Data Controls :: ObjectDataSource Cannot Access GridView Control Inside FormView

Apr 16, 2010

Basically as the title of this thread states, I have a FormView that has a GridView inside it and my ObjectDataSource that populates this grid cannot access the Grid.

The Control Id needs to be the name of the Grid I want to access, however through the 'wizard' the Control parameter drop down cannot 'see' the grid I need, only the FormView that is in.

I have tried numerous ways to get round this and am struggling now..

I've tried the following...

ControlID="FormView.GridView1"

ControlID="FormView.FindControl("GridView1")

ControlID="<%= GetNameOfGrid %>"

and numerous other attempts that also failed that I now cant remember...

View 2 Replies

Forms Data Controls :: Formview Paging Not Working With Objectdatasource And Viewstate Setup?

Oct 7, 2010

I was able to get the formview bound to the objectdatasource, it works great for the first record, but when i select the next record it gives me error below is all my code, if there is something else that i need to post .

[Code]....

View 3 Replies

Forms Data Controls :: Multiple Commands On The Codebehind After Button_click Event To Insert And Read Inserted

Nov 16, 2010

I want to be able to show the record that was just inserted after add_button_click event. I run the insert from mycommand and then set mycommand2 to run the read to populate a details view. I have a feeling I am going about this the wrong way. The insert fires correctly but the details view does not populate.

[Code]....

View 3 Replies

DataSource Controls :: Custom Insert Method In ObjectDataSource?

Jan 19, 2010

I've an ObjectDataSource & its datasource from typed dataset which is bind to 3 textboxes.

One of that textbox text concatenate with other two textboxes values.

Some thing like this,

textbox1.text=textbox2.text & textbox3.text

How can I customize my insert query for this?

I could not see the insert query in my objectdatasource.

View 4 Replies

DataSource Controls :: Pass Object As SessionParameter In ObjectDataSource?

Dec 28, 2010

Is it possible to pass a domain object as session parameter in an ObjectDataSource. I'm doing this:

<asp:ObjectDataSource ID="ParticipantsDataSource" runat="server" OnInit="SqlDataSource_Load"
SelectMethod="LoadParticipants" TypeName="SB.Web.units.Players">
<SelectParameters>
<asp:SessionParameter Name="user" SessionField="User" Type="SB.BusinessLogic.DomainEntity.User" />
</SelectParameters>
</asp:ObjectDataSource>

But I get the error message that I can't create an object of the type System.TypeCode from the string containing SB.BusinessLogic.DomainEntity.User for the property Type.

View 1 Replies

Forms Data Controls :: Detailsview In Insert Mode With Objectdatasource

Aug 25, 2010

i have a detailsview in insert mode and that is bound to objectdatasource. now the class that is attached to objectdatasource is :

[Code]....

here ResturantId value has to be in session or from Dropdownlist and rest of the value from Detailview. So how to assign that value?

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved