I have a web page where the user selects certain criteria, then clicks a submit button.
VB Code:
  1. Private Sub Button1_ServerClick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.ServerClick
  2.         Session("BegDate") = DTPicker1.Text
  3.         Session("EndDate") = DTPicker2.Text
  4.         Session("Store") = cmbStores.SelectedItem.Text
  5.         Session("Process") = "Store_Departments"
  6.         Response.Redirect("Processing.aspx")
  7.     End Sub
This redirects to a web page with a progress bar on it. When the page loads, it fires off a function that runs.
VB Code:
  1. Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  2.         Functions()
  3.     End Sub
  4.     Private Sub Functions()
  5.         Select Case Session("Process")
  6.             Case "Store_Departments"
  7.                 Dim f As New Functions
  8.                 f.fncStore_Departments(Session("BegDate"), Session("EndDate"), Session("Store"), Request.Cookies("EmpID").Value, Session("DistStores"))
  9.                 Response.Redirect("Store_Departments.aspx")
  10.         End Select
  11.     End Sub
Now, all this works except for one thing. The page that I redirect too with the progress bar, never displays for some reason. Can someone tell me why?

Thanks