How do I filter a listview with multi parameters in c# using querystring

ProductList.aspx <asp:DataList ID="dl_category" runat="server"> <ItemTemplate> <li> <a href = "ProductList.aspx?ProdCategory=<%#Eval("Category_Name")%>"><%# Eval("Category_Name")%></a> </li> </ItemTemplate> </asp:DataList> <asp:DataList ID="dl_vendor" runat="server"> <ItemTemplate> <li> <a href = "ProductList.aspx?Vendor=<%# Eval("Vendor_Name")%>"><%# Eval("Vendor_Name")%></a> </li> </ItemTemplate> </asp:DataList> Currently I have 2 datalist. One datalist filters the listview by product category while the other datalist filters the listview by vendor name. ProductList.aspx.cs protected void Page_Load(object … Read more

Acumatica – Detail Record Not using Auto-Numbered Field of Master Record

I have a maintenance form in Acumatica 2020R2 that has a master-detail relationship between a form and two tab items that contain grids. I have the ID of the form auto-numbering, and the detail records use this ID with the PXParentAttribute. The form auto-numbers and saves to the database with the correct ID, but the detail records are saving to the database with the initial placeholder <NEW> instead of the auto-number.

System.InvalidCastException: ‘Conversion from string “employee” to type ‘Boolean’ is not valid.’

The form I created pops up but when I click on the open button this error occurs. The error directs me to sqlConn.ConnectionString , So any insights with regards to the problem is really helpful. Private Sub updateTable() sqlConn.ConnectionString = "server=" + server + ";" + "user id =" = username + ";" _ + … Read more