So I have event that basically checks if I have already added to shipment already. I put a break point in at inventoryBLL inv = new inventoryBLL(); and it never breaks. The funny thing is that I can get the index without much fuss.
My C#
protected void rblSwitch1_SelectedIndexChanged(object sender, EventArgs e)
{
inventoryBLL inv = new inventoryBLL();
List<string> asinholder = new List<string>();
List<string> fnskuholder = new List<string>();
int Index = new int();
asinwrapper asin = asinwrapper.GetSessionWrapper();
if (asin != null)
{
fnskuholder = asin.FNSKU;
asinholder = asin.ASIN;
Index = asin.Index;
}
List<shipmentdetail> detail = new List<shipmentdetail>();
multipleshipments m = multipleshipments.GetSessionWrapper();
if (m != null)
{
detail = m.Detail;
}
inventory.ItemCheckDataTable items = inv.GetItem(asinholder[Index], detail[0].Id[ddlExisting1.SelectedIndex]);
if (items.Rows.Count < 0)
{
foreach (inventory.ItemCheckRow row in items)
{
txt.Text = row.Quantity;
}
}
}
This is the HTML
<asp:RadioButtonList ID="rblSwitch1" runat="server"
onselectedindexchanged="rblSwitch1_SelectedIndexChanged">
<asp:ListItem Value="0">New Shipment</asp:ListItem>
<asp:ListItem Value="1">Existing Shipment</asp:ListItem>
</asp:RadioButtonList>
Add
AutoPostBack = "true"to your tag. This should be it:Here is a decent reference showing an example.