DataSource Controls :: Delete Gridview Records With Enable Deleting
Feb 19, 2010
I have bounded my GridView to an ObjectDataSource. I have set a delete method for this ObjectDataSource. Now how can I delete my GridView's records with enable Deleting?
I'm using the asp.net membership on my website. On the User Administration page i've got a GridView to show the details of the users on the site. As a datasource rather than just using the Membership.GetAllUsers function i've got a SQLDataSource as i need to display user information from 3 different tables. I'm trying to add a delete button to the GridView. I'm setting the Membership's UserName as a DataKey and then using the RowDeleting event to call Membership.DeleteUser for the appropriate UserName. This works fine and the user is deleted however i then get an error showing up that "Deleting is not supported by data source 'SqlDataSource1' unless DeleteCommand is specified."
I don't want to use the SqlDataSource for deleting as i've already done it using the Membership. How can i stop it from trying to do this? Here is the cut-down that i have if you're interested. The selectcommand in the sqldatasource was auto-generated by it.
I have a gridview that shows all data from a table. DataNames includes KeyId, which is a Primary Key.Yet when I try to delete a record, nothing happens, the page appears to performa refresh but the record is still there.Edit does not work either. I used the wizard to build all of the queries, they look okay. But I cannot figure out why they are not working.
m using gridview to display records from sql server2005. In gridview, I have a field containing checkboxes. Now what i want that the fields against which a user checked in checkboxes that will be deleted by clicking on delete button just like the emails yahoo, gmail etc How can i do so?
have trouble to add delete column to gridview when using specific query.I have PK set up at the table, I need add specific query to display dataat gridview:
SELECT [PID], [GID], [TID], [SID], [NEWSID] FROM [TableOne] WHERE ([NAME] = ?)
After builder this query, I click advanced button. However, generate insert, update, and delete Statements is not enabled.
I have two tables dept and employees those table have parent and child relation ship link column is deptno i want to delte department even this departmetn contains employees i want to write storedprocedure for first delte employees and after department if i wrtie these two querys in storedprocedure will i get any problems
Begin Delete from tbl_employees where Department_Id=@Department_Id Delete from tbl_Department where Department_Id=@Department_Id RETURN END
I have a gridview were one of the colunms has a checkbox for deleting that row. When the user open the page the delete button is set to enable = false. If the user checks one box the delete imagebutton is disable = false. That works, now I need to add Javascript to enable the Delete button if the user selects checkAll, how do I do that?
I have the below code snippet i found, but when running the delete command I get an run-time error of: Index was out of range. Must be non-negative and less than the size of the collection.
I need to be able to delete records from a gridview using a stored procedure. My data comes from two sources so the standard delete won't work. I have come up with the code below which deletes a record, but the wrong one. How can I iterate through the rows to delete the row I actually want to delete.
I have created a ListView with a SQL DataSource. It has Item Template, Alternate Item Template, Insert Item Template, Layout Template, Edit Item Template & Select Item Template. There are delete buttons in the Item Template, Alternate Item Template and Select Item Template. The Delete command is
DeleteCommand="DELETE FROM [ClientNoteType_Lookup] WHERE [ClientNoteTypeCode] = @ClientNoteTypeCode"
which seems correct. I have not selected Use Optimistic Consurrency when I configured the data source. When I click on the Delete button, it deletes the selected record and the record after. THe ClienNoteTypeCode is a varchar(4) field and all codes are unique. It deletes both records in SQL Server when the button is clicked, but one one is deleted on the web page until I refresh the page and then both are deleted.
i have a project that allows users to send requests to another user. When the user views the requests he can select reply. I want to be able delete the item after the user selects reply
I am trying to delete a row of records in a gridview. The selectMethod works perfectly fine, but the DeleteMethod doesn't. When I delete a row, only 1 row of records should be deleted, but the whole gridview was deleted! (I have about 3 -5 rows of data). I am using ObjectDataSource.
I am trying to run a delete command from multiple tables and cant seem to get it to work. When you run the delete it just refreshes the gridview... Below is my delete command and parameters along with the code behind that I run.
DeleteCommand="DELETE FROM RecipeBox, Recipes WHERE (RecipeBox.ID = @RecipeID) or (Recipes.RecipeID = @RecipeID)"> <DeleteParameters> <asp:Parameter Name="RecipeID" />
I am using a gridview with inbuilt paging whose data source is an objectdatasource. i simply need to show the total no of records present in gridview in a label. when i use gridview1.rows.count then it will return only the total no of records present in that page. Is there a way to find out the total number of records present in gridview or in objectdatasource.
i couldnt find a specific answer to this question, i am relatively new to .net :)
i have a gridview that is displaying data from a sqldatasource in my page_load event. i need to loop through the records and update each value of a particular column BEFORE being set into the GridView.
i have tried converting to a data set and looping through updating the values, however it seems that one i initially run my query the values get set right into the GridView and i can't update them after that.
Do I need to add one of the GridView functions like Databound and do the loop in there?
I have Gridview on my webapplication and it is getting filled with multiple rows . When clicked on Save I want to Insert all rows without calling multiple database hits.
Is there any way I can insert all rows by single db hit?
I am new to asp.net.I am buliding an online shopping application.Could anyone tell me the steps to edit records in gridview which have its datasource i.e. datatable.Means the shopping cart wil display its products.i want to do editing in gridview say quantity or product which automatically edit records(quantity) in datatable and then gridview wil again get bind to new edited datatable and able to show edited records say edited quantity of taht product.