﻿<?xml version="1.0"?>
<doc>
<assembly>
<name>
Vascor.UI.Web.Library
</name>
</assembly>
<members>
<member name="T:Vascor.UI.Web.Library.FVSCMSGridView">
 <summary>
 Base FVSCMS GridView with column Sorting indicators and Paging validation.
 <example>
 Private Sub... Handles grdVINs.Sorting
 ...
 If Not IsNothing(currentView) Then
     currentView.Sort = grdVINs.SortValue
     grdVINs.PageIndex = 0
     grdVINs.DataBind()
 End If
 ...
 </example>
 </summary>
 <remarks>
 01/17/2008
 Justin Bailey
 Ported from FVSCMSGrid; included pseudo multi-column sorting; paging only needs to be rebound on PageIndexChanging
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSGridView.#ctor">
 <summary>
 Get a new instance of an FVSCMS GridView.
 </summary>
 <remarks>
 01/18/2008
 Justin Bailey
 Added EmptyDataText default value.
 
 07/28/2008
 Removed PagerSettings.Visible=False and all explicit style values--use the CSS class instead. 
 Added default CSSClasses instead of explicit styles.
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.FVSCMSGridView.AllowCustomStyles">
 <summary>
 Gets or sets a value indicating whether user-defined styles
 will be used or pre-defined ones. Default is False so that
 standard CSS styles will be applied to the control. True
 will set the control CssClass and default in-line styles
 for all children elements which can easily be overriden
 by a user-defined style or CssClass.
 </summary>
 <value></value>
 <returns></returns>
 <remarks>
 07/31/2008
 Justin Bailey
 Added.
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.FVSCMSGridView.AutoGenerateRowOnClick">
 <summary>
 Gets or sets a value indicating whether a click event
 for the RowOnClickCommand call is automatically added 
 for each Data Row. 
 </summary>
 <value></value>
 <returns>
 true to automatically add a row onclick event 
 for each data row; otherwise, false. 
 The default is false.
 </returns>
 <remarks>
 04/04/2008
 Justin Bailey
 Created.
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.FVSCMSGridView.RowOnClickCommandName">
 <summary>
 Gets or sets the GridView command name to be 
 executed on Row Click. Default value is "Select."
 </summary>
 <value></value>
 <returns>
 String value representing the 
 command name to be executed.
 </returns>
 <remarks>
 04/07/2008
 Justin Bailey
 Added.
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.FVSCMSGridView.IsSortedAscending">
 <summary>
 Gets or sets a value indicating if the current data is sorted in Ascending order
 </summary>
 <returns>True if Ascending</returns>
 <remarks>
 01/16/2008
 Justin Bailey
 Ported from the existing FVSCMSGrid
 Leaving the object type so that the boolean won't default to False
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.FVSCMSGridView.SortExpression">
 <summary>
 Gets or sets the expression used to sort the items in the GridView control.
 </summary>
 <returns>
 The expression used to sort the items in the GridView control. 
 Supports multiple columns separated by commas in Grids that explicitly handle the Sorting event.
 </returns>
 <remarks>
 01/16/2008
 Justin Bailey
 Ported from the existing FVSCMSGrid
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.FVSCMSGridView.SortValue">
 <summary>
 Gets or sets the sort column(s) and sort order for the current data based on the SortExpression and SortDirection.
 </summary>
 <returns>
 A string that contains the column name(s) followed by "ASC" (ascending) or "DESC" (descending). 
 Columns are sorted ascending by default. Multiple columns can be separated by commas.
 </returns>
 <remarks>
 01/16/2008
 Justin Bailey
 Created
 *Requires BuildSort and ViewState("Sort")
 Allow for future multi-column select yet keeps legacy compatibility with leaving the built in SortExpression alone
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSGridView.BuildSort(System.String)">
 <summary>
 Returns a comma delimited string of field names and adds sort direction for a full sort expression
 </summary>
 <param name="strFieldList">Comma delimited field list</param>
 <returns>A comma delimited string of field names with sort direction ASC or DESC</returns>
 <remarks>
 01/16/2008
 Justin Bailey
 Ported from page code-behind to reduce amount of page-side coding
 
 08/06/2009
 Justin Bailey
 Added ASC append. Added IsNullOrEmpty check.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSGridView.OnRowCreated(System.Object,System.Web.UI.WebControls.GridViewRowEventArgs)">
 <summary>
 Occurs when a row is created in a System.Web.UI.WebControls.GridView control.
 </summary>
 <remarks>
 01/16/2008
 Justin Bailey
 Ported from FVSCMSGrid
 Removed sorted cell clear and re-add of link and label controls
 *Requires Property IsSortedAscending
 
 03/05/2008
 Justin Bailey
 Refactored to consolidate IFs and be compatible with all DataSources by completing the
 conversion to all GridView members.
 
 07/30/2008
 Justin Bailey
 Added CssClass and Asc/Desc styles.
 
 08/06/2009 JPB: Changed from StartsWith to Array Contains and added ToUpper.
 'TODO: Ammend the "all fields or nothing" for the IsSortedAscending property.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSGridView.OnSortCommand(System.Object,System.Web.UI.WebControls.GridViewSortEventArgs)">
 <summary>
 Occurs when the hyperlink to sort a column is clicked, but before the System.Web.UI.WebControls.GridView control handles the sort operation.
 </summary>
 <remarks>
 01/16/2008
 Justin Bailey
 Ported from FVSCMSGrid
 *Requires Properties IsSortedAscending and SortExpression
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSGridView.OnPageIndexChanged(System.Object,System.Web.UI.WebControls.GridViewPageEventArgs)">
 <summary>
 Occurs when one of the pager buttons is clicked, but before the System.Web.UI.WebControls.GridView control handles the paging operation.
 *Grid needs only to be bound to the datasource--page index changing operations are already handled in addition to validation on the Index.
 <example>
 Private Sub... Handles grdVINs.PageIndexChanging
   ReBindGrid()
 End Sub
 </example>
 </summary>
 <remarks>
 RMB: 8-14-07
 Wrapped the CurrentPageIndex assignment with a condition to prevent a random assignment error from occurring
 Could log the e.NewPageIndex to identify the value being assigned and cause this type of error; For now, just set the page index to the first page.
 01/16/2008
 Justin Bailey
 Ported from FVSCMSGrid
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSGridView.OnRowDataBound(System.Object,System.Web.UI.WebControls.GridViewRowEventArgs)">
 <summary>
 Occurs when a data row is bound to data in a System.Web.UI.WebControls.GridView control. Adds
 the full row click Select event scripts if the Property value is true.
 </summary>
 <remarks>
 04/04/2008
 Justin Bailey
 Created.
 
 07/22/2008
 Justin Bailey
 Removed the RowClick code from being added for the EditRow.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSGridView.OnSelectedIndexChanging(System.Object,System.Web.UI.WebControls.GridViewSelectEventArgs)">
 <summary>
 Occurs when a row's Select button is clicked, but before the System.Web.UI.WebControls.GridView control handles the select operation. Adds
 deselect if the selected row is clicked twice while AutoGenerateRowOnClick is enabled.
 </summary>
 <remarks></remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSUIPage.HandleException(System.Exception@,System.Boolean,System.String)">
 <summary>
 FVSCMS Handle Exception will ignore ThreadAbortExceptions , write them to the output window
 </summary>
 <param name="ex"></param>
 <param name="SendMail"></param>
 <param name="strErrorNotificationList"></param>
 <remarks>
 11/30/2010
 Samantha Aldridge
 Added override per email from Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSUIPage.HandleException(System.Exception,System.Boolean)">
 <summary>
 Standardized means of handling an exception in the application. FVSCMS Handle excpetion will  ignore ThreadAbortExceptions , write them to the output window
 </summary>
 <param name="ex"></param>
 <param name="SendMail"></param>
 <remarks>
 11/30/2010
 Samantha Aldridge
 override created per email from Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSUIPage.Page_Init(System.Object,System.EventArgs)">
 <summary>
 
 </summary>
 <param name="sender"></param>
 <param name="e"></param>
 <remarks>
 07/16/2010
 Samantha Aldridge
 Modified
 added appending the host environment if it's not already on the title
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSUIPage.BuildGAScript(System.String)">
 <summary>
 Builds a GoogleAnalytics Tracking Code string without javascript tags.
 </summary>
 <param name="WebPropertyID"></param>
 <returns></returns>
 <remarks>
 2011-03-29
 Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSUIPage.RunJavaScript(System.String)">
 <summary>
 Calls RunJavaScript using the script itself as the key
 </summary>
 <param name="Script">Content of the script that will be sent to the client. Also functions as the Key in this case.</param>
 <remarks>
 09/21/2005
 Matt Ryavec
 Calls RunJavaScript using the script itself as the key
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSUIPage.RunJavaScript(System.String,System.String)">
 <summary>
 Use this to emit any javascript to run on page load.
 </summary>
 <param name="Script">Content of the script that will be sent to the client.</param>
 <param name="Key">Unique key that identifies the script block.</param>
 <remarks>
 02/08/2008
 Justin Bailey
 Added type to client-side text for XHTML compliance.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSUIPage.RunJavaScriptOnLoad(System.String,System.String)">
 <summary>
 Use this to emmit any javascript to run on page load.
 </summary>
 <param name="Script">Content of the script that will be sent to the client.</param>
 <param name="Key">Unique key that identifies the script block.</param>
 <remarks></remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSUIPage.MsgBox(System.String,Microsoft.VisualBasic.MsgBoxStyle,System.String,System.Boolean)">
 <summary>
 displays a message box to the screen
 </summary>
 <param name="Prompt"></param>
 <param name="Style"></param>
 <param name="Title"></param>
 <param name="DoPostBack"></param>
 <remarks>
 12/31/2012
 Samantha Aldridge
 Not original author, changing implementation from VBScript to Javascript for cross browser compatibility
 WI </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSUIPage.ConvertVBStyleToJS(Microsoft.VisualBasic.MsgBoxStyle)">
 <summary>
 Rudimentary helper function to convert between vb msg box and javascript alert type
 </summary>
 <param name="Style"></param>
 <returns></returns>
 <remarks>
 12/31/2012
 Samantha Aldridge
 Created
 WI 7954
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSUIPage.OnError(System.EventArgs)">
 <summary>
 Standardized means of handling an exception in the application.
 </summary>
 <remarks>
 01/18/2005
 Patrick Johnson
 Standardized means of handling an exception in the application.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSUIPage.AppSettings(System.String)">
 <summary>
 Gets a value from the custom Application Settings. Use
 instead of ConfigurationManager.AppSettings. Implements
 <see cref="M:Vascor.Library.Config.GetConfigEx(System.String,System.String,System.Boolean)"></see>. 
 </summary>
 <param name="strKey">AppSettings Key.</param>
 <returns>Value of the key if found or an exception.</returns>
 <remarks>
 11/25/2008
 Justin Bailey
 
 04/18/2012
 Samantha Aldridge
 making public
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSUIPage.ExportToExcel(System.Object,System.String)">
 <summary>
 Export datagrid or repeater to excel
 </summary>
 <param name="objGrid">Target Grid or Repeater as Object</param>
 <param name="strFileName">Target File Name</param>
 <remarks>
 08/24/2005
 Maaloot Suprawan
 This function wrote by Yogesh Agrawal
 Export datagrid or repeater to excel
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSUIPage.ExportToExcel(System.Data.DataSet,System.Web.HttpResponse,System.String)">
 <summary>
 **DEPRECATED. Use Vascor.Library.Utility.ExportToExcel** Export a Dataset to Excel.
 </summary>
 <param name="objData">Object containing data to export</param>
 <param name="response">Response object</param>
 <param name="strFileName">Filename with .xls</param>
 <remarks>
 01/17/2008
 Justin Bailey
 Added auto-disposing using statements and XML comments. Updated variables and added "Overloads" to reflect coding standard.
 
 02/08/2008
 Justin Bailey
 Consolidated Response calls.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSUIPage.ExportToExcel(System.Object,System.Web.HttpResponse,System.String)">
 <summary>
 **DEPRECATED. Use Vascor.Library.Utility.ExportToExcel** Export an object to Excel. 
 *Do not use with GridView.
 </summary>
 <param name="objData">Object containing data to export</param>
 <param name="response">Response object</param>
 <param name="strFileName">Filename with .xls</param>
 <remarks>
 Unknown
 Replaced this "ByVal dgdData As DataGrid, _" with a base object to support repeater as well as datagrid.
 
 01/17/2008
 Justin Bailey
 Added auto-disposing using statements and XML comments. Updated variables and added "Overloads" to reflect coding standard.
 
 02/08/2008
 Justin Bailey
 Consolidated Response calls.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSUIPage.Redirect(System.String,System.String)">
 <summary>
 Redirects via client startup script.
 </summary>
 <param name="strTargetURL">window.open(strTargetURL,--)</param>
 <param name="strTarget">window.open(--,strTarget)</param>
 <remarks>
 09/09/2009
 Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSWebService.AppSettings(System.String)">
 <summary>
 Gets a value from the custom Application Settings. Use
 instead of ConfigurationManager.AppSettings. Implements
 <see cref="M:Vascor.Library.Config.GetConfigEx(System.String,System.String,System.Boolean)"></see>. 
 </summary>
 <param name="strKey">AppSettings Key.</param>
 <returns>Value of the key if found or an exception.</returns>
 <remarks>
 11/25/2008
 Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSWebService.GetDataSetWithMessage(System.String,System.String)">
 <summary>
 Gets a simple DataSet and DataTable called "WebServiceMessage"
 containing a Row and Column called "Message" to wrap a string 
 value to return to the caller.
 </summary>
 <param name="strMessage"></param>
 <param name="strDataSetName"></param>
 <returns></returns>
 <remarks>
 08/28/2008
 Justin Bailey
 Added.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSWebService.GetExceptionTable(System.String,System.Exception)">
 <summary>
 Gets a DataTable called "Exception" with a row
 and two columns called "ExceptionMessage" and "Exception" which
 will contain the ex.Message and ex, respectively.
 </summary>
 <param name="ex"></param>
 <returns></returns>
 <remarks>
 08/28/2008
 Justin Bailey
 Added.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.FVSCMSWebService.AppendExceptionToDataSet(System.String,System.Exception,System.Data.DataSet@)">
 <summary>
 Appends an ExceptionTable to a given DataSet or if it exists,
 appends a new exception row to the Exception table.
 </summary>
 <param name="strMessage">Send Nothing to use ex.Message.</param>
 <param name="ex">Send Nothing to omit.</param>
 <param name="dstResult">Required.</param>
 <remarks>
 08/28/2008
 Justin Bailey
 Added.
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.LIMSUIPage.ApplicationName">
 <summary>
 This is used to return the application name from the web.config
 Was first used to split the database for Logistics and LogisticsMexico
 </summary>
 <value></value>
 <returns>ApplicationName</returns>
 <remarks>
 3/26/10
 James Brooks
 Created
 ****************** NOTE ******************
 
 MUST EXIST IN THE WEB.CONFIG FOR THE APPLICATION
 ****************** NOTE ******************        ''' 
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.Multilingual.LoadPageLabelControls(System.Web.UI.Page,System.Int32,System.Collections.Hashtable@,System.Collections.Hashtable@)">
 <summary>
 Converts text values for controls, server and client side strings.
 </summary>
 <param name="objPage">Reference to the calling page.</param>
 <param name="intPageID">Page ID as listed in tbPage.</param>
 <param name="htbServerSideMulitlingualStrings">Hashtable of all <b>Server</b> side strings.</param>
 <param name="htbClientSideMulitlingualStrings">Hashtable of all <b>Client</b> side strings </param>
 <returns>Boolean success or failure status.</returns>
 <remarks>Looking to factor Page ID into the Page object.</remarks>
</member>
<member name="P:Vascor.UI.Web.Library.PublicBasePage.HostEnvironment">
 <summary>
 if the key is in machine config return it, else does NOT throw an exception
 Returns empty string
 </summary>
 <value></value>
 <returns></returns>
 <remarks>
 07/07/2010
 Samantha Aldridge
 Created
 
 08/03/2010
 Samantha Aldridge
 added isoptional=true in case other apps use this page
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.PublicBasePage.ReportServerUrl">
 <summary>
 Gets the ReportServerURL for the application
 Report Server. Checks for that key in the 
 AppSettings or the Application Configuration section
 if the Machine.Config.SectionName key is defined (in 
 the AppSettings).
 </summary>
 <value></value>
 <returns></returns>
 <remarks>
 12/22/2009
 Justin Bailey
 Added to support SSRS.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.PublicBasePage.Page_Load(System.Object,System.EventArgs)">
 <summary>
 
 </summary>
 <param name="sender"></param>
 <param name="e"></param>
 <remarks>
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.PublicBasePage.RegisterStartupScript(System.String,System.String)">
 <summary>
 Custom implimentation of the ClientScript / Page method that 
 Registers the startup script with the current System.Web.UI.Page object type, 
 a key, and a script literal; 
 unless a ScriptManager is present, which takes precedence in receiving the Registration
 for AJAX support.
 </summary>
 <param name="strKey">A unique identifier for the script block.</param>
 <param name="strScript">The script.</param>
 <remarks>
 09/04/2008
 Justin Bailey
 Added to centralize multiple calls with the same pattern as well as
 support AJAX ScriptManagers.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.PublicBasePage.RegisterStartupScript(System.String,System.String,System.Boolean)">
 <summary>
 Custom implimentation of the ClientScript / Page method that 
 Registers the startup script with the current System.Web.UI.Page object type, 
 a key, a script literal, and a Boolean value indicating whether to add script tags; 
 unless a ScriptManager is present, which takes precedence in receiving the Registration
 for AJAX support.
 </summary>
 <param name="strKey">A unique identifier for the script block.</param>
 <param name="strScript">The script.</param>
 <param name="blnAddScriptTags">true to enclose the script block with <script> and </script> tags; otherwise, false.</param>
 <remarks>
 09/04/2008
 Justin Bailey
 Added to centralize multiple calls with the same pattern as well as
 support AJAX ScriptManagers.
 </remarks>
</member>
<member name="T:Vascor.UI.Web.Library.SecurityManagerUIPage">
 <summary>
 Supply Chain Accounting
 </summary>
 <remarks>
 12/2013
 Samantha Aldridge
 created
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurityManagerUIPage.HandleException(System.Exception@,System.Boolean,System.String)">
 <summary>
 FVSCMS Handle Exception will ignore ThreadAbortExceptions , write them to the output window
 </summary>
 <param name="ex"></param>
 <param name="SendMail"></param>
 <param name="strErrorNotificationList"></param>
 <remarks>
 11/30/2010
 Samantha Aldridge
 Added override per email from Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurityManagerUIPage.HandleException(System.Exception,System.Boolean)">
 <summary>
 Standardized means of handling an exception in the application. FVSCMS Handle excpetion will  ignore ThreadAbortExceptions , write them to the output window
 </summary>
 <param name="ex"></param>
 <param name="SendMail"></param>
 <remarks>
 11/30/2010
 Samantha Aldridge
 override created per email from Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurityManagerUIPage.Page_Init(System.Object,System.EventArgs)">
 <summary>
 
 </summary>
 <param name="sender"></param>
 <param name="e"></param>
 <remarks>
 07/16/2010
 Samantha Aldridge
 Modified
 added appending the host environment if it's not already on the title
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurityManagerUIPage.BuildGAScript(System.String)">
 <summary>
 Builds a GoogleAnalytics Tracking Code string without javascript tags.
 </summary>
 <param name="WebPropertyID"></param>
 <returns></returns>
 <remarks>
 2011-03-29
 Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurityManagerUIPage.RunJavaScript(System.String)">
 <summary>
 Calls RunJavaScript using the script itself as the key
 </summary>
 <param name="Script">Content of the script that will be sent to the client. Also functions as the Key in this case.</param>
 <remarks>
 09/21/2005
 Matt Ryavec
 Calls RunJavaScript using the script itself as the key
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurityManagerUIPage.RunJavaScript(System.String,System.String)">
 <summary>
 Use this to emit any javascript to run on page load.
 </summary>
 <param name="Script">Content of the script that will be sent to the client.</param>
 <param name="Key">Unique key that identifies the script block.</param>
 <remarks>
 02/08/2008
 Justin Bailey
 Added type to client-side text for XHTML compliance.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurityManagerUIPage.RunJavaScriptOnLoad(System.String,System.String)">
 <summary>
 Use this to emmit any javascript to run on page load.
 </summary>
 <param name="Script">Content of the script that will be sent to the client.</param>
 <param name="Key">Unique key that identifies the script block.</param>
 <remarks></remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurityManagerUIPage.MsgBox(System.String,Microsoft.VisualBasic.MsgBoxStyle,System.String,System.Boolean)">
 <summary>
 displays a message box to the screen
 </summary>
 <param name="Prompt"></param>
 <param name="Style"></param>
 <param name="Title"></param>
 <param name="DoPostBack"></param>
 <remarks>
 12/31/2012
 Samantha Aldridge
 Not original author, changing implementation from VBScript to Javascript for cross browser compatibility
 WI </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurityManagerUIPage.ConvertVBStyleToJS(Microsoft.VisualBasic.MsgBoxStyle)">
 <summary>
 Rudimentary helper function to convert between vb msg box and javascript alert type
 </summary>
 <param name="Style"></param>
 <returns></returns>
 <remarks>
 12/31/2012
 Samantha Aldridge
 Created
 WI 7954
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurityManagerUIPage.OnError(System.EventArgs)">
 <summary>
 Standardized means of handling an exception in the application.
 </summary>
 <remarks>
 01/18/2005
 Patrick Johnson
 Standardized means of handling an exception in the application.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurityManagerUIPage.AppSettings(System.String)">
 <summary>
 Gets a value from the custom Application Settings. Use
 instead of ConfigurationManager.AppSettings. Implements
 <see cref="M:Vascor.Library.Config.GetConfigEx(System.String,System.String,System.Boolean)"></see>. 
 </summary>
 <param name="strKey">AppSettings Key.</param>
 <returns>Value of the key if found or an exception.</returns>
 <remarks>
 11/25/2008
 Justin Bailey
 
 04/18/2012
 Samantha Aldridge
 making public
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurityManagerUIPage.ExportToExcel(System.Object,System.String)">
 <summary>
 Export datagrid or repeater to excel
 </summary>
 <param name="objGrid">Target Grid or Repeater as Object</param>
 <param name="strFileName">Target File Name</param>
 <remarks>
 08/24/2005
 Maaloot Suprawan
 This function wrote by Yogesh Agrawal
 Export datagrid or repeater to excel
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurityManagerUIPage.ExportToExcel(System.Data.DataSet,System.Web.HttpResponse,System.String)">
 <summary>
 **DEPRECATED. Use Vascor.Library.Utility.ExportToExcel** Export a Dataset to Excel.
 </summary>
 <param name="objData">Object containing data to export</param>
 <param name="response">Response object</param>
 <param name="strFileName">Filename with .xls</param>
 <remarks>
 01/17/2008
 Justin Bailey
 Added auto-disposing using statements and XML comments. Updated variables and added "Overloads" to reflect coding standard.
 
 02/08/2008
 Justin Bailey
 Consolidated Response calls.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurityManagerUIPage.ExportToExcel(System.Object,System.Web.HttpResponse,System.String)">
 <summary>
 **DEPRECATED. Use Vascor.Library.Utility.ExportToExcel** Export an object to Excel. 
 *Do not use with GridView.
 </summary>
 <param name="objData">Object containing data to export</param>
 <param name="response">Response object</param>
 <param name="strFileName">Filename with .xls</param>
 <remarks>
 Unknown
 Replaced this "ByVal dgdData As DataGrid, _" with a base object to support repeater as well as datagrid.
 
 01/17/2008
 Justin Bailey
 Added auto-disposing using statements and XML comments. Updated variables and added "Overloads" to reflect coding standard.
 
 02/08/2008
 Justin Bailey
 Consolidated Response calls.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurityManagerUIPage.Redirect(System.String,System.String)">
 <summary>
 Redirects via client startup script.
 </summary>
 <param name="strTargetURL">window.open(strTargetURL,--)</param>
 <param name="strTarget">window.open(--,strTarget)</param>
 <remarks>
 09/09/2009
 Justin Bailey
 </remarks>
</member>
<member name="T:Vascor.UI.Web.Library.SecurityUIMasterPage">
 <summary>
 Master page class created for fvscms classic website's ui redesign.
 </summary>
 <remarks>
 08/15/2014
 Samantha Aldridge
 Created.
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.SecurityUIMasterPage.Page">
 <summary>
 Enforce that the context page type be of an FVSCMSUIPage so that the implemented master page has access to the fvscms
 page's security and viewstate methods.  
 </summary>
 <value></value>
 <returns></returns>
 <remarks>
10/09/2013
 Samantha Aldridge
 Created
 </remarks>
</member>
<member name="T:Vascor.UI.Web.Library.SCAUIMasterPage">
 <summary>
 Master page class created for fvscms classic website's ui redesign.
 </summary>
 <remarks>
 12/16/2013
 Samantha Aldridge
 Created.
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.SCAUIMasterPage.Page">
 <summary>
 Enforce that the context page type be of an FVSCMSUIPage so that the implemented master page has access to the fvscms
 page's security and viewstate methods.  
 </summary>
 <value></value>
 <returns></returns>
 <remarks>
10/09/2013
 Samantha Aldridge
 Created
 </remarks>
</member>
<member name="T:Vascor.UI.Web.Library.SCAUIPage">
 <summary>
 Supply Chain Accounting
 </summary>
 <remarks>
 12/2013
 Samantha Aldridge
 created
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SCAUIPage.HandleException(System.Exception@,System.Boolean,System.String)">
 <summary>
 FVSCMS Handle Exception will ignore ThreadAbortExceptions , write them to the output window
 </summary>
 <param name="ex"></param>
 <param name="SendMail"></param>
 <param name="strErrorNotificationList"></param>
 <remarks>
 11/30/2010
 Samantha Aldridge
 Added override per email from Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SCAUIPage.HandleException(System.Exception,System.Boolean)">
 <summary>
 Standardized means of handling an exception in the application. FVSCMS Handle excpetion will  ignore ThreadAbortExceptions , write them to the output window
 </summary>
 <param name="ex"></param>
 <param name="SendMail"></param>
 <remarks>
 11/30/2010
 Samantha Aldridge
 override created per email from Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SCAUIPage.Page_Init(System.Object,System.EventArgs)">
 <summary>
 
 </summary>
 <param name="sender"></param>
 <param name="e"></param>
 <remarks>
 07/16/2010
 Samantha Aldridge
 Modified
 added appending the host environment if it's not already on the title
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SCAUIPage.BuildGAScript(System.String)">
 <summary>
 Builds a GoogleAnalytics Tracking Code string without javascript tags.
 </summary>
 <param name="WebPropertyID"></param>
 <returns></returns>
 <remarks>
 2011-03-29
 Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SCAUIPage.RunJavaScript(System.String)">
 <summary>
 Calls RunJavaScript using the script itself as the key
 </summary>
 <param name="Script">Content of the script that will be sent to the client. Also functions as the Key in this case.</param>
 <remarks>
 09/21/2005
 Matt Ryavec
 Calls RunJavaScript using the script itself as the key
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SCAUIPage.RunJavaScript(System.String,System.String)">
 <summary>
 Use this to emit any javascript to run on page load.
 </summary>
 <param name="Script">Content of the script that will be sent to the client.</param>
 <param name="Key">Unique key that identifies the script block.</param>
 <remarks>
 02/08/2008
 Justin Bailey
 Added type to client-side text for XHTML compliance.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SCAUIPage.RunJavaScriptOnLoad(System.String,System.String)">
 <summary>
 Use this to emmit any javascript to run on page load.
 </summary>
 <param name="Script">Content of the script that will be sent to the client.</param>
 <param name="Key">Unique key that identifies the script block.</param>
 <remarks></remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SCAUIPage.MsgBox(System.String,Microsoft.VisualBasic.MsgBoxStyle,System.String,System.Boolean)">
 <summary>
 displays a message box to the screen
 </summary>
 <param name="Prompt"></param>
 <param name="Style"></param>
 <param name="Title"></param>
 <param name="DoPostBack"></param>
 <remarks>
 12/31/2012
 Samantha Aldridge
 Not original author, changing implementation from VBScript to Javascript for cross browser compatibility
 WI </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SCAUIPage.ConvertVBStyleToJS(Microsoft.VisualBasic.MsgBoxStyle)">
 <summary>
 Rudimentary helper function to convert between vb msg box and javascript alert type
 </summary>
 <param name="Style"></param>
 <returns></returns>
 <remarks>
 12/31/2012
 Samantha Aldridge
 Created
 WI 7954
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SCAUIPage.OnError(System.EventArgs)">
 <summary>
 Standardized means of handling an exception in the application.
 </summary>
 <remarks>
 01/18/2005
 Patrick Johnson
 Standardized means of handling an exception in the application.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SCAUIPage.AppSettings(System.String)">
 <summary>
 Gets a value from the custom Application Settings. Use
 instead of ConfigurationManager.AppSettings. Implements
 <see cref="M:Vascor.Library.Config.GetConfigEx(System.String,System.String,System.Boolean)"></see>. 
 </summary>
 <param name="strKey">AppSettings Key.</param>
 <returns>Value of the key if found or an exception.</returns>
 <remarks>
 11/25/2008
 Justin Bailey
 
 04/18/2012
 Samantha Aldridge
 making public
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SCAUIPage.ExportToExcel(System.Object,System.String)">
 <summary>
 Export datagrid or repeater to excel
 </summary>
 <param name="objGrid">Target Grid or Repeater as Object</param>
 <param name="strFileName">Target File Name</param>
 <remarks>
 08/24/2005
 Maaloot Suprawan
 This function wrote by Yogesh Agrawal
 Export datagrid or repeater to excel
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SCAUIPage.ExportToExcel(System.Data.DataSet,System.Web.HttpResponse,System.String)">
 <summary>
 **DEPRECATED. Use Vascor.Library.Utility.ExportToExcel** Export a Dataset to Excel.
 </summary>
 <param name="objData">Object containing data to export</param>
 <param name="response">Response object</param>
 <param name="strFileName">Filename with .xls</param>
 <remarks>
 01/17/2008
 Justin Bailey
 Added auto-disposing using statements and XML comments. Updated variables and added "Overloads" to reflect coding standard.
 
 02/08/2008
 Justin Bailey
 Consolidated Response calls.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SCAUIPage.ExportToExcel(System.Object,System.Web.HttpResponse,System.String)">
 <summary>
 **DEPRECATED. Use Vascor.Library.Utility.ExportToExcel** Export an object to Excel. 
 *Do not use with GridView.
 </summary>
 <param name="objData">Object containing data to export</param>
 <param name="response">Response object</param>
 <param name="strFileName">Filename with .xls</param>
 <remarks>
 Unknown
 Replaced this "ByVal dgdData As DataGrid, _" with a base object to support repeater as well as datagrid.
 
 01/17/2008
 Justin Bailey
 Added auto-disposing using statements and XML comments. Updated variables and added "Overloads" to reflect coding standard.
 
 02/08/2008
 Justin Bailey
 Consolidated Response calls.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SCAUIPage.Redirect(System.String,System.String)">
 <summary>
 Redirects via client startup script.
 </summary>
 <param name="strTargetURL">window.open(strTargetURL,--)</param>
 <param name="strTarget">window.open(--,strTarget)</param>
 <remarks>
 09/09/2009
 Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurePage.BuildTree(System.Int32)">
 <summary>
 
 </summary>
 <param name="ApplicationID"></param>
 <returns></returns>
 <remarks>
 11/02/2012
 Samantha Aldridge
 added loadingpanel javascript function call for fvscms menu items.
 
 03/20/2013
 Samantha Aldridge
 changed call for onclick to load menu items js function (fvscms applicationID only)
 WI 9370
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.SecurePage.HostEnvironment">
 <summary>
 Returns the value in machine config, if value not there does NOT throw exception it will return empty string
 </summary>
 <value></value>
 <returns></returns>
 <remarks>
 07/07/2010
 Samantha Aldridge
 Created
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.SecurePage.PageCode">
 <summary>
 This will set the PageCode 
 and set the corresponding PageID for the given PageCode and ApplicationCode
 </summary>
 <value>PageCode</value>
 <remarks>
 8/16/10
 James Brooks
 WI 1811
 Created
 
 This is setting the PageID for legacy applications to save a round trip to the server.
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.SecurePage.PageID">
 <summary>
 This will get the PageID
 The value is setup through the PageCode property
 </summary>
 <returns>PageID</returns>
 <remarks>
 8/16/10
 James Brooks
 WI 1811
 Created
 
 This is set from the PageCode property for legacy applications to save a round trip to the server.
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.SecurePage.ReportServerUrl">
 <summary>
 Gets the ReportServerURL for the application
 Report Server. Checks for that key in the 
 AppSettings or the Application Configuration section
 if the Machine.Config.SectionName key is defined (in 
 the AppSettings).
 </summary>
 <value></value>
 <returns></returns>
 <remarks>
 12/22/2009
 Justin Bailey
 Added to support SSRS.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurePage.HandleException(System.Exception@,System.Boolean,System.String)">
 <summary>
 Standardized means of handling an exception in the application. 
 </summary>
 <param name="ex"></param>
 <param name="SendMail"></param>
 <param name="strErrorNotificationList"></param>
 <remarks>
 01/18/2005
 Patrick Johnson
 
 08/25/2009
 Justin Bailey
 Added XML comments. Removed optional param and added Overloads.
 
 11/30/2010
 Samantha Aldridge
 added in overridable

 08/06/2012
 Samantha Aldridge
 checking for inner exception to add to the message
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurePage.HandleException(System.Exception,System.Boolean)">
 <summary>
 Standardized means of handling an exception in the application.
 
 </summary>
 <param name="ex"></param>
 <param name="SendMail"></param>
 <remarks>
 08/25/2009
 Justin Bailey
 Added overload with ByVAL ex and the default value as formerly defined in the original method's 
 optional parameter.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurePage.MsgBox(System.String,Microsoft.VisualBasic.MsgBoxStyle,System.String,System.Boolean)">
 <summary>
 
 </summary>
 <param name="Prompt"></param>
 <param name="Style"></param>
 <param name="Title"></param>
 <param name="DoPostBack"></param>
 <remarks>
 12/28/2012
 Changing to use javascript instead of vbscript for cross browser support
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurePage.Page_Init(System.Object,System.EventArgs)">
 <summary>
 
 </summary>
 <param name="sender"></param>
 <param name="e"></param>
 <remarks>
 07/16/2010
 Samantha Aldridge
 Modified
 added appending the host environment if it's not already on the title
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurePage.RegisterStartupScript(System.String,System.String)">
 <summary>
 Custom implimentation of the ClientScript / Page method that 
 Registers the startup script with the current System.Web.UI.Page object type, 
 a key, and a script literal; 
 unless a ScriptManager is present, which takes precedence in receiving the Registration
 for AJAX support.
 </summary>
 <param name="strKey">A unique identifier for the script block.</param>
 <param name="strScript">The script.</param>
 <remarks>
 09/04/2008
 Justin Bailey
 Added to centralize multiple calls with the same pattern as well as
 support AJAX ScriptManagers.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurePage.RegisterStartupScript(System.String,System.String,System.Boolean)">
 <summary>
 Custom implimentation of the ClientScript / Page method that 
 Registers the startup script with the current System.Web.UI.Page object type, 
 a key, a script literal, and a Boolean value indicating whether to add script tags; 
 unless a ScriptManager is present, which takes precedence in receiving the Registration
 for AJAX support.
 </summary>
 <param name="strKey">A unique identifier for the script block.</param>
 <param name="strScript">The script.</param>
 <param name="blnAddScriptTags">true to enclose the script block with <script> and </script> tags; otherwise, false.</param>
 <remarks>
 09/04/2008
 Justin Bailey
 Added to centralize multiple calls with the same pattern as well as
 support AJAX ScriptManagers.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurePage.GetSecurityUrl">
 <summary>
 Gets the full redirect URL string, taking into account a full URL in the config file.
 </summary>
 <returns></returns>
 <remarks>
 2011-03-22
 Justin Bailey
 Created to one, consolidate code, and two, include the option to override the virtual directory.
 
 11/10/2011
 Samantha Aldridge
 changed from private to protected so inherited classes can call.(ie for top menu logoff link)
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.SecurePage.GetSecurityErrorUrl">
 <summary>
 returns the url for the security error page which displays the access denied error at this time, can be extended to send an error code
 for additional messages.
 </summary>
 <returns></returns>
 <remarks>
 12/08/2014
 Samantha Aldridge
 Created 
 WI 16884
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.ViewStatePage.PersistViewStateToFile">
 <summary>
 This property is used to switch on/off the persist viewstate to file feature.
 </summary>
 <value></value>
 <returns></returns>
 <remarks>This property is useful for debugging.  If you do not want the viewstate persisted then do not inherit this class since that is all it does.</remarks>
</member>
<member name="M:Vascor.UI.Web.Library.ViewStatePage.SavePageStateToPersistenceMedium(System.Object)">
 <summary>
 This Method is used to Save the Viewstate values of the controls on the page into the specified file.
 </summary>
 <param name="objViewStateBag"></param>
 <remarks></remarks>
</member>
<member name="M:Vascor.UI.Web.Library.ViewStatePage.LoadPageStateFromPersistenceMedium">
 <summary>
 This Function loads the persisted Viewstate values from the file on to the controls.
 </summary>
 <returns></returns>
 <remarks></remarks>
</member>
<member name="P:Vascor.UI.Web.Library.ViewStatePage.ViewStateFileName">
 <summary>
 This Property is used to create and retrieve the viewstate filename.
 </summary>
 <value></value>
 <returns></returns>
 <remarks>This Property is used to create and retrieve the viewstate filename.</remarks>
</member>
<member name="M:Vascor.UI.Web.Library.ViewStatePage.DeleteViewStateFilesOlderThanNDays(System.Int32)">
 <summary>
 Clean up files older than N days old.  This method should only be used when your sites session times out at a different intreval than the ASP.Net session.
 </summary>
 <remarks>This method should only be used when your sites session times out at a different intreval than the ASP.Net session.</remarks>
</member>
<member name="M:Vascor.UI.Web.Library.ViewStatePage.DeleteViewStateFilesBySession(System.Web.SessionState.HttpSessionState)">
 <summary>
 This Shared Method is used to delete the Viewstate files for a session.
 </summary>
 <param name="objSession">Reference to a session object, typically passed in by the Session_End Event in the Global.asax.</param>
 <remarks></remarks>
</member>
<member name="P:Vascor.UI.Web.Library.ViewStatePage.ViewStateFullFileName">
 <summary>
 This property is used to create and return the path and filename of the viewstate file.
 </summary>
 <value></value>
 <returns></returns>
 <remarks></remarks>
</member>
<member name="P:Vascor.UI.Web.Library.ViewStatePage.ViewStateFileGuidKey">
 <summary>
 This property will return the viewstate file guid query string key.
 </summary>
 <value></value>
 <returns></returns>
 <remarks></remarks>
</member>
<member name="P:Vascor.UI.Web.Library.ViewStatePage.ViewStateFilePath">
 <summary>
 This property is used to create and return the ViewStateFilePath.
 </summary>
 <value></value>
 <returns></returns>
 <remarks></remarks>
</member>
<member name="P:Vascor.UI.Web.Library.WebService.InitializerAssemblyType">
 <summary>
 Gets or sets the current
 assembly type as defined by the
 initializer. Intended for use
 with the <see cref="M:Vascor.UI.Web.Library.WebService.Version"/> 
 method call.
 </summary>
 <value></value>
 <returns></returns>
 <remarks>
 08/03/2009
 Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.WebService.Version">
 <summary>
 Get the current assembly version of the initializing class dll.
 Typically used for testing connectivity to the Web Service
 by calling String.IsNullOrEmpty on the return value. Requires
 that the <see cref="P:Vascor.UI.Web.Library.WebService.InitializerAssemblyType" /> property be set.
 </summary>
 <returns></returns>
 <remarks>
 08/03/2009
 Justin Bailey
 </remarks>
</member>
<member name="T:Vascor.UI.Web.Library.CasperWebService">
 <summary>
 Base WS class for anything Casper.
 </summary>
 <remarks>
 02/02/2009
 Justin Bailey
 Moved some the base GetFilename methods here
 and added a base ForwardScannerData
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.CasperWebService.ScanDataHeaderTableName">
 <summary>
 Gets the value of the header table used for scanner datasets.
 Needs to match the relevant value in the mobile code.
 </summary>
 <value></value>
 <returns></returns>
 <remarks>
 01/15/2009
 Justin Bailey
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.CasperWebService.ScanDataDetailTableName">
 <summary>
 Gets the value of the header table used for scanner datasets.
 Needs to match the relevant value in the mobile code.
 </summary>
 <value></value>
 <returns></returns>
 <remarks>
 01/15/2009
 Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.CasperWebService.AppSettings(System.String)">
 <summary>
 Gets a value from the custom Application Settings. Use
 instead of ConfigurationManager.AppSettings. Implements
 <see cref="M:Vascor.Library.Config.GetConfigEx(System.String,System.String,System.Boolean)"></see>. 
 </summary>
 <param name="strKey">AppSettings Key.</param>
 <returns>Value of the key if found or an exception.</returns>
 <remarks>
 11/25/2008
 Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.CasperWebService.AddHeaderToParams(System.Data.DataSet@,System.Collections.Hashtable@)">
 <summary>
 Writes the standard Casper header table to the given
 hash table as parameters for use with Vascor SQLData.
 </summary>
 <param name="dstScanData"></param>
 <param name="htbParams"></param>
 <remarks>
 01/15/2009
 Justin Bailey
 
 02/23/2011
 Horacio Torres
 Inspector1 renamed to Operator
 WI 2720
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.CasperWebService.GetDataFileDirectory">
 <summary>
 Get the Casper Data directory and create it if it does not exist.
 </summary>
 <returns></returns>
 <remarks>
 02/01/2009
 Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.CasperWebService.GetBadFileDirectory">
 <summary>
 Get the Casper BadFile directory and create it if it does not exist.
 </summary>
 <returns></returns>
 <remarks>
 01/07/2009
 Justin Bailey
 
 02/02/2009
 Justin Bailey
 Moved from CasperWSHQ.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.CasperWebService.ForwardScannerData(System.Data.DataSet)">
 <summary>
 Receive a dataset containing the scanner data raw file. Returns 1 if the file
 was saved successfully or 0 if there was a problem and the file should be 
 preserved at the caller.
 </summary>
 <param name="dstScannerData"></param>
 <returns>0 or less for failure. 1 or greater for success.</returns>
 <remarks>
 02/01/2009
 Justin Bailey
 
 TODO: JPB: 1) Make this support business lines OR 2) Support override per business line.
  Either way, the intended use needs to be made clear.
 
 02/03/2009
 Justin Bailey
 Changed return type to Integer to match other implementations
 that may return the StageID for success.
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.LIMSUIPublicPage.ApplicationName">
 <summary>
 This is used to return the application name from the web.config
 Was first used to split the database for Logistics and LogisticsMexico
 </summary>
 <value></value>
 <returns>ApplicationName</returns>
 <remarks>
 3/26/10
 James Brooks
 Created
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.POVUIPage.HandleException(System.Exception@,System.Boolean,System.String)">
 <summary>
 FVSCMS Handle Exception will ignore ThreadAbortExceptions , write them to the output window
 </summary>
 <param name="ex"></param>
 <param name="SendMail"></param>
 <param name="strErrorNotificationList"></param>
 <remarks>
 11/30/2010
 Samantha Aldridge
 Added override per email from Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.POVUIPage.HandleException(System.Exception,System.Boolean)">
 <summary>
 Standardized means of handling an exception in the application. FVSCMS Handle excpetion will  ignore ThreadAbortExceptions , write them to the output window
 </summary>
 <param name="ex"></param>
 <param name="SendMail"></param>
 <remarks>
 11/30/2010
 Samantha Aldridge
 override created per email from Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.POVUIPage.Page_Init(System.Object,System.EventArgs)">
 <summary>
 
 </summary>
 <param name="sender"></param>
 <param name="e"></param>
 <remarks>
 07/16/2010
 Samantha Aldridge
 Modified
 added appending the host environment if it's not already on the title
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.POVUIPage.BuildGAScript(System.String)">
 <summary>
 Builds a GoogleAnalytics Tracking Code string without javascript tags.
 </summary>
 <param name="WebPropertyID"></param>
 <returns></returns>
 <remarks>
 2011-03-29
 Justin Bailey
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.POVUIPage.RunJavaScript(System.String)">
 <summary>
 Calls RunJavaScript using the script itself as the key
 </summary>
 <param name="Script">Content of the script that will be sent to the client. Also functions as the Key in this case.</param>
 <remarks>
 09/21/2005
 Matt Ryavec
 Calls RunJavaScript using the script itself as the key
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.POVUIPage.RunJavaScript(System.String,System.String)">
 <summary>
 Use this to emit any javascript to run on page load.
 </summary>
 <param name="Script">Content of the script that will be sent to the client.</param>
 <param name="Key">Unique key that identifies the script block.</param>
 <remarks>
 02/08/2008
 Justin Bailey
 Added type to client-side text for XHTML compliance.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.POVUIPage.RunJavaScriptOnLoad(System.String,System.String)">
 <summary>
 Use this to emmit any javascript to run on page load.
 </summary>
 <param name="Script">Content of the script that will be sent to the client.</param>
 <param name="Key">Unique key that identifies the script block.</param>
 <remarks></remarks>
</member>
<member name="M:Vascor.UI.Web.Library.POVUIPage.MsgBox(System.String,Microsoft.VisualBasic.MsgBoxStyle,System.String,System.Boolean)">
 <summary>
 displays a message box to the screen
 </summary>
 <param name="Prompt"></param>
 <param name="Style"></param>
 <param name="Title"></param>
 <param name="DoPostBack"></param>
 <remarks>
 12/31/2012
 Samantha Aldridge
 Not original author, changing implementation from VBScript to Javascript for cross browser compatibility
 WI </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.POVUIPage.ConvertVBStyleToJS(Microsoft.VisualBasic.MsgBoxStyle)">
 <summary>
 Rudimentary helper function to convert between vb msg box and javascript alert type
 </summary>
 <param name="Style"></param>
 <returns></returns>
 <remarks>
 12/31/2012
 Samantha Aldridge
 Created
 WI 7954
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.POVUIPage.OnError(System.EventArgs)">
 <summary>
 Standardized means of handling an exception in the application.
 </summary>
 <remarks>
 01/18/2005
 Patrick Johnson
 Standardized means of handling an exception in the application.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.POVUIPage.AppSettings(System.String)">
 <summary>
 Gets a value from the custom Application Settings. Use
 instead of ConfigurationManager.AppSettings. Implements
 <see cref="M:Vascor.Library.Config.GetConfigEx(System.String,System.String,System.Boolean)"></see>. 
 </summary>
 <param name="strKey">AppSettings Key.</param>
 <returns>Value of the key if found or an exception.</returns>
 <remarks>
 11/25/2008
 Justin Bailey
 
 04/18/2012
 Samantha Aldridge
 making public
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.POVUIPage.ExportToExcel(System.Object,System.String)">
 <summary>
 Export datagrid or repeater to excel
 </summary>
 <param name="objGrid">Target Grid or Repeater as Object</param>
 <param name="strFileName">Target File Name</param>
 <remarks>
 08/24/2005
 Maaloot Suprawan
 This function wrote by Yogesh Agrawal
 Export datagrid or repeater to excel
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.POVUIPage.ExportToExcel(System.Data.DataSet,System.Web.HttpResponse,System.String)">
 <summary>
 **DEPRECATED. Use Vascor.Library.Utility.ExportToExcel** Export a Dataset to Excel.
 </summary>
 <param name="objData">Object containing data to export</param>
 <param name="response">Response object</param>
 <param name="strFileName">Filename with .xls</param>
 <remarks>
 01/17/2008
 Justin Bailey
 Added auto-disposing using statements and XML comments. Updated variables and added "Overloads" to reflect coding standard.
 
 02/08/2008
 Justin Bailey
 Consolidated Response calls.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.POVUIPage.ExportToExcel(System.Object,System.Web.HttpResponse,System.String)">
 <summary>
 **DEPRECATED. Use Vascor.Library.Utility.ExportToExcel** Export an object to Excel. 
 *Do not use with GridView.
 </summary>
 <param name="objData">Object containing data to export</param>
 <param name="response">Response object</param>
 <param name="strFileName">Filename with .xls</param>
 <remarks>
 Unknown
 Replaced this "ByVal dgdData As DataGrid, _" with a base object to support repeater as well as datagrid.
 
 01/17/2008
 Justin Bailey
 Added auto-disposing using statements and XML comments. Updated variables and added "Overloads" to reflect coding standard.
 
 02/08/2008
 Justin Bailey
 Consolidated Response calls.
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.POVUIPage.Redirect(System.String,System.String)">
 <summary>
 Redirects via client startup script.
 </summary>
 <param name="strTargetURL">window.open(strTargetURL,--)</param>
 <param name="strTarget">window.open(--,strTarget)</param>
 <remarks>
 09/09/2009
 Justin Bailey
 </remarks>
</member>
<member name="T:Vascor.UI.Web.Library.FVSCMSUIMasterPage">
 <summary>
 Master page class created for fvscms classic website's ui redesign.
 </summary>
 <remarks>
 04/17/2012
 Samantha Aldridge
 Created.
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.FVSCMSUIMasterPage.Page">
 <summary>
 Enforce that the context page type be of an FVSCMSUIPage so that the implemented master page has access to the fvscms
 page's security and viewstate methods.  
 </summary>
 <value></value>
 <returns></returns>
 <remarks>
 04/17/2012
 Samantha Aldridge
 Created
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.OMSUIPage.HandleException(System.Exception@,System.Boolean,System.String)">
 <summary>
 FVSCMS/OMS Handle Exception will ignore ThreadAbortExceptions , write them to the output window
 </summary>
 <param name="ex"></param>
 <param name="SendMail"></param>
 <param name="strErrorNotificationList"></param>
 <remarks>
 11/30/2010
 Samantha Aldridge
 Added override per email from Justin Bailey
 03/28/2012
 TFS: 9574
 Justin Pierson
 Migrated to OMSUIPage
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.OMSUIPage.HandleException(System.Exception,System.Boolean)">
 <summary>
 Standardized means of handling an exception in the application. FVSCMS/OMS Handle excpetion will  ignore ThreadAbortExceptions , write them to the output window
 </summary>
 <param name="ex"></param>
 <param name="SendMail"></param>
 <remarks>
 11/30/2010
 Samantha Aldridge
 override created per email from Justin Bailey
 03/28/2012
 TFS: 9574
 Justin Pierson
 Migrated to OMSUIPage
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.PasswordGenerator.okToChangePassword(System.Int32,System.String)">
 <summary>
 
 </summary>
 <param name="userID"></param>
 <param name="password"></param>
 <returns></returns>
 <remarks>
 06/02/2011
 Samantha Aldridge
 changed for loop to start at the beginning of the array, it was missing the first element so the password check was only happening against the current password, not the one before
 </remarks>
</member>
<member name="M:Vascor.UI.Web.Library.PasswordGenerator.okToChangePassword(System.Int32)">
 <summary>
 This method takes a userID and calls okToChangePassword(Guid userID, string password) using the
 password property for the second parameter.
 </summary>
 <param name="userID"></param>
 <returns>Pass/Fail</returns>
 <remarks></remarks>
</member>
<member name="T:Vascor.UI.Web.Library.POVUIMasterPage">
 <summary>
 Master page class created for fvscms classic website's ui redesign.
 </summary>
 <remarks>
 10/09/2013
 Samantha Aldridge
 Created.
 </remarks>
</member>
<member name="P:Vascor.UI.Web.Library.POVUIMasterPage.Page">
 <summary>
 Enforce that the context page type be of an FVSCMSUIPage so that the implemented master page has access to the fvscms
 page's security and viewstate methods.  
 </summary>
 <value></value>
 <returns></returns>
 <remarks>
10/09/2013
 Samantha Aldridge
 Created
 </remarks>
</member>
<member name="T:Extensions">
 <summary>
 Custom VASCOR extension methods that are not specific to an application
 but specifically targeted to UI.Web.
 Import Vascor.UI.Web.Library.Extensions to enable.
 </summary>
 <remarks>
 10/13/2008 
 Justin Bailey
 Added for central storage of any VASCOR custom extension methods for UI Web.
 Works for 3.5 codebase only.
 </remarks>
</member>
<member name="M:Extensions.RemoveCssClass(System.Web.UI.WebControls.WebControl@,System.String)">
 <summary>
 If the given control exists and contains the target CssClass name, 
 it will be removed from the target control's existing CssClass(es).
 <example>
 1) lblMyLable.CssClass = "CustomLabelClass Required minWidth" 
 2) lblMyLabel.RemoveCssClass("Required") 
 3) lblMyLable.CssClass.ToString() will equal "CustomLabelClass minWidth" 
 </example>
 </summary>
 <param name="ctlTarget"></param>
 <param name="strCssClassName"></param>
 <remarks>
 10/13/2008
 Justin Bailey
 Added to mimick the built-in AJAX functionality.
 </remarks>
</member>
<member name="M:Extensions.AddCssClass(System.Web.UI.WebControls.WebControl@,System.String)">
 <summary>
 If the target control exists and does not contain the given CssClass name, it will
 be added to the target control at the end of any existing CssClass names.
 <example>
 1) lblMyLable.CssClass = "CustomLabelClass minWidth"
 2) lblMyLabel.AddCssClass("Required")
 3) lblMyLable.CssClass.ToString() will equal "CustomLabelClass minWidth Required"
 </example>
 </summary>
 <param name="ctlTarget"></param>
 <param name="strCssClassName"></param>
 <remarks>
 10/13/2008
 Justin Bailey
 Added to mimick the built-in AJAX functionality.
 </remarks>
</member>
<member name="T:My.Resources.Resources">
<summary>
  A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:My.Resources.Resources.ResourceManager">
<summary>
  Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:My.Resources.Resources.Culture">
<summary>
  Overrides the current thread's CurrentUICulture property for all
  resource lookups using this strongly typed resource class.
</summary>
</member>
</members>
</doc>
