| | |
e.Item.DataItem=null in Repeater ItemCommand
Please support our ASP.NET advertiser: Intel Parallel Studio Home
![]() |
Hi.....
I am binding a Repeater control with List<int> at OnLoad event
it works fine.....my Repeater bind successfully......i have a button at each Repeater Item....When i click on that button my Repeater Item Command is fire ......but my code e.Item.DataItem is null
I am binding a Repeater control with List<int> at OnLoad event
ASP.NET Syntax (Toggle Plain Text)
protected override void OnLoad(EventArgs e) { if(!Page.IsPostBack) { List<int> datasource =Get(); if(datasource!=null) { rpt.DataSource=datasource; rpt.DataBind(); } } base.OnLoad(e); }
protected void rpt_ItemCommand(object source, RepeaterCommandEventArgs e)
{
if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
{
if (e.CommandName == "Remove")
{
int i=(int)e.Item.DataItem // This Line shows error (my ItemDataBound event is working fine.....)
}
}
} Last edited by peter_budo; Dec 21st, 2008 at 4:59 am. Reason: Keep It Organized - For easy readability, always wrap programming code within posts in [code] (code blocks) and [icode] (inline code) tags.
![]() |
Other Threads in the ASP.NET Forum
- Previous Thread: Web Application unavailable on remote machine
- Next Thread: Referencing Detailsview template field
| Thread Tools | Search this Thread |
.net 2.0 3.5 activexcontrol advice ajax alltypeofvideos asp asp.net bc30451 bottomasp.net browser businesslogiclayer button c# c#gridviewcolumn checkbox child click commonfunctions compatible confirmationcodegeneration content contenttype countryselector courier css dataaccesslayer database datagrid datagridview datagridviewcheckbox datalist deadlock development dgv dropdownlist dropdownmenu edit expose feedback flash flv form formatdecimal forms formview gridview homeedition hosting iframe iis javascript jquery list listbox login menu microsoft mono mouse mssql multistepregistration nameisnotdeclared news numerical objects order panelmasterpagebuttoncontrols radio ratings rotatepage save schoolproject search security serializesmo.table silverlight smartcard sql-server sqlserver2005 suse textbox tracking typeof unauthorized validation vb.net video videos virtualdirectory vista visual-studio visualstudio web webarchitecture webdevelopemnt webservice xml youareanotmemberofthedebuggerusers





