Current Directory: \\10.5.0.10\iis\Sites\goprint2.com\www\

Contents: Directories:
App_Code
App_Data
App_GlobalResources
App_LocalResources
App_WebReferences
articles
aspnet_client
Bin
common
designer
dillners
images
img
includes
kwikkopy
order_centre
printthree
RadControls
update
WebServices
Files:
about_us.aspx | Download
about_us.aspx.vb | Download
contact_us.aspx | Download
contact_us.aspx.vb | Download
create_user.aspx | Download
create_user.aspx.vb | Download
Default.aspx | Download
Default.aspx.vb | Download
discount.aspx | Download
discount.aspx.vb | Download
domain_activation.aspx | Download
domain_activation.aspx.vb | Download
downloadPD.aspx | Download
downloadPD.aspx.vb | Download
download_error.aspx | Download
download_error.aspx.vb | Download
email_policy.aspx | Download
email_policy.aspx.vb | Download
error_page.aspx | Download
error_page.aspx.vb | Download
faq.aspx | Download
faq.aspx.vb | Download
favicon.ico | Download
FileNotFound.htm | Download
generate_print_driver_step1.aspx | Download
generate_print_driver_step1.aspx.vb | Download
generate_print_driver_step2.aspx | Download
generate_print_driver_step2.aspx.vb | Download
generate_print_driver_step3.aspx | Download
generate_print_driver_step3.aspx.vb | Download
Global.asax | Download
header.fla | Download
header.swf | Download
home.aspx | Download
home.aspx.vb | Download
jsincluding.js | Download
login.aspx | Download
login.aspx.vb | Download
marcelito.txt | Download
packages.aspx | Download
packages.aspx.vb | Download
password_recovery.aspx | Download
password_recovery.aspx.vb | Download
PrintIt.master | Download
PrintIt.master.vb | Download
PrintIt.sitemap | Download
PrintItEs.sitemap | Download
PrintItFr.sitemap | Download
PrintIt_CreateUser.master | Download
PrintIt_CreateUser.master.vb | Download
PrintIt_OutSide.master | Download
PrintIt_OutSide.master.vb | Download
privacy_policy.aspx | Download
privacy_policy.aspx.vb | Download
proba.aspx | Download
proba.aspx.vb | Download
robots.txt | Download
sample.txt | Download
show_sess_par.aspx | Download
show_sess_par.aspx.vb | Download
site_map.aspx | Download
site_map.aspx.vb | Download
site_map.xml | Download
sRacadUploader.jar | Download
sRacadUploader_last.jar | Download
terms_and_conditions.aspx | Download
terms_and_conditions.aspx.vb | Download
terms_of_service.aspx | Download
terms_of_service.aspx.vb | Download
test.txt | Download
testimonials.aspx | Download
testimonials.aspx.vb | Download
TextDraw.html | Download
udraw-designer-widescreen-ui.zip | Download
web.config | Download
websites-for-printers.aspx | Download
websites-for-printers.aspx.vb | Download

File Preview: Imports Telerik.WebControls Partial Class order_centre_Default Inherits System.Web.UI.Page Private _webAdapter As New WebWS() Private _goPrint2Adapter As New com.racadtech.services.GoPrint2Client() Private pdfConverterWS As New com.racadtech.services.PDFConverter() Dim _customerId As String = "" Dim _activationId As String = "" Dim _files As String = "filename1@@@302131%%%" Dim _emailSent As String = "" Dim _ftpSent As String = "" Dim _jobOptions As String = "" Dim _uploadMethod As String = "" Dim _masterKey As String = MasterKey Dim _jobId As String = "" Public ReadOnly Property TempDirectory() As String Get Return ConfigurationManager.AppSettings.Get("PrintItTempDataPath").ToString() End Get End Property Public ReadOnly Property WebAdapter() As WebWS Get Return _webAdapter End Get End Property Public ReadOnly Property GoPrint2Adapter() As com.racadtech.services.GoPrint2Client Get Return _goPrint2Adapter End Get End Property Public ReadOnly Property JobFilesDirectory() As String Get Return ConfigurationManager.AppSettings.Get("JobFilesPath").ToString() End Get End Property Public ReadOnly Property JobFilesVirtualDirectory() As String Get Return ConfigurationManager.AppSettings.Get("JobFilesVirtualDirectory").ToString() End Get End Property Public ReadOnly Property MasterKey() As String Get Return "877k31hg333-d03423332wq-312dkazlfs-433398j543" End Get End Property Public ReadOnly Property CurrentUser() As String Get Return System.Web.HttpContext.Current.User.Identity.Name.ToString() End Get End Property Public ReadOnly Property CurrentUserId() As String Get Return Membership.GetUser(CurrentUser).ProviderUserKey.ToString() End Get End Property Public ReadOnly Property CurrentCustomerId() As String Get If Not Session("CustomerId") Is Nothing Then Return Session("CustomerId") Else Return WebAdapter.GetCustomerIdByUserId(CurrentUserId) End If End Get End Property Public ReadOnly Property CurrentActivationId() As String Get Return WebAdapter.GetActivationIdByStoreId(Session("StoreId")).ToString() End Get End Property Public ReadOnly Property BaseImageURL() As String Get If Not Session("BaseImageURL") Is Nothing Then Return Session("BaseImageURL") Else Return "themes/orange/" End If End Get End Property Public ReadOnly Property CurrentLanguage() As String Get Return System.Threading.Thread.CurrentThread.CurrentCulture.TwoLetterISOLanguageName.ToLower().Substring(0, 2) End Get End Property Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load If (Not System.Web.HttpContext.Current.User.Identity.IsAuthenticated()) Then Response.Redirect("~/order_centre/login.aspx") End If ' Disable Language Panel. Dim _languagesPanel As Web.UI.WebControls.Panel = Me.Master.FindControl("LanguagesPanel") Dim _languagesSpacer As Web.UI.HtmlControls.HtmlGenericControl = Me.Master.FindControl("LanguagesSpacerLabel") _languagesPanel.Visible = False _languagesSpacer.InnerHtml = "<br /><br />" _customerId = CurrentCustomerId _activationId = CurrentActivationId _jobOptions = Session("JobOptions") ' Update Applet Language + Scope Me.UploaderControl1.AppletParams.Add("lang", CurrentLanguage) Me.UploaderControl1.AppletParams.Add("scope", 3) End Sub End Class