home *** CD-ROM | disk | FTP | other *** search
/ 66.142.0.142 / 66.142.0.142.tar / 66.142.0.142 / utlPayrollExport_results.aspx.vb < prev    next >
Text File  |  2010-08-24  |  680b  |  20 lines

  1.  
  2. Partial Class utlPayrollExport_results
  3.     '    Inherits System.Web.UI.Page
  4.     Inherits AspNetMaker7_tfpssnet
  5.  
  6.     Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
  7.         If Not IsPostBack Then
  8.             If Session("tfpssnet_Status") <> "login" Then
  9.                 Response.Redirect("login.aspx")
  10.             End If
  11.         End If
  12.         If Session("reccount") <> 0 Then
  13.             lblMessage.Text = Session("reccount") & " Records exported to " & Session("ExportFileName")
  14.         Else
  15.             lblMessage.Text = "NO Records exported to " & Session("ExportFileName")
  16.         End If
  17.  
  18.     End Sub
  19.  
  20. End Class