repeater items
-
Your question is not clear.Can you explain bit more?
Cheers!! Brij Check my latest Article :Exploring ASP.NET Validators
-
Your question is not clear.Can you explain bit more?
Cheers!! Brij Check my latest Article :Exploring ASP.NET Validators
-
i need to delete rows in repeater.. how to do that... as each row has unique id in repeater control how do i know the id of each row...
So what is the problem,Just have an link button in repeater, and on itemcommand event delete that item then again bind the repeater. For examle have alook to the link Click here
Cheers!! Brij Check my latest Article :Exploring ASP.NET Validators
-
So what is the problem,Just have an link button in repeater, and on itemcommand event delete that item then again bind the repeater. For examle have alook to the link Click here
Cheers!! Brij Check my latest Article :Exploring ASP.NET Validators
two columns descriptionname and description and dont hav any id..
// ignore syntax
sqlcmd.xommandtext="delete from descriptiontable where descriptionname=@descriptionname and description=@description"if two rows has same values then both will be deleted i want to delete only one row... the values entered are from dynamic textboxes in repeater control
-
two columns descriptionname and description and dont hav any id..
// ignore syntax
sqlcmd.xommandtext="delete from descriptiontable where descriptionname=@descriptionname and description=@description"if two rows has same values then both will be deleted i want to delete only one row... the values entered are from dynamic textboxes in repeater control
You can genrate your own id, like some identity column in DB and put a check while deleting.You can put the id in some hidden field in repeater if you require.
Cheers!! Brij Check my latest Article :Exploring ASP.NET Validators