protected void dlCartBoat_ItemDataBound(object sender, DataListItemEventArgs e)
        { 
            
if (e.Item.ItemType == ListItemType.Item)
            {
                Label lblTransport 
= (Label)e.Item.FindControl("lblTransport");
                lblTransport.Text 
= vehicle[((DataRowView)e.Item.DataItem).Row["dddlTransportation"].ToString()];
            }
        }

相关文章:

  • 2021-10-09
  • 2021-12-27
  • 2021-12-18
  • 2022-02-23
  • 2022-12-23
  • 2021-05-18
  • 2021-09-25
猜你喜欢
  • 2021-09-20
  • 2021-11-13
  • 2021-07-08
  • 2022-01-12
  • 2021-05-26
  • 2021-08-18
  • 2021-12-19
相关资源
相似解决方案