Right now my code prints out the account number, purchase order number, the summary datagrid total, etc.....
I am having trouble finding out how to recreate another form with the same account number but different purchase order number?
Imports System.Data
Imports System.Web.UI.HtmlControls
Imports System.Globalization
Partial Class ProductShippedSummary
Inherits System.Web.UI.Page
Protected Sub Page_Load(sender As Object, e As System.EventArgs) Handles Me.Load
' Declaring all my Subs
GetSessionVariables()
GetOrders()
GetCheckForData()
GetSummaryDataGrid()
GetAdjustments()
GetTaxes()
GetShipping()
GetGrandTotal()
GetStandardShipping()
GetWLADShipping()
GetMTADShipping()
GetRushShipping()
GetReshipShipping()
GetWLADSales()
GetMTADSales()
GetALASales()
GetHandling() ...
Go to the complete details ...