⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dynamsoft sourceanywhere for vss a sourcesafe internet-remote-web access solution.htm

📁 Dynamsoft SourceAnywhere for VSS a SourceSafe internet-remote-web access solution
💻 HTM
📖 第 1 页 / 共 5 页
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0047)https://www.dynamsoft.com/Secure/SAW_BuyIt.aspx -->
<HTML><HEAD><TITLE>Dynamsoft SourceAnywhere for VSS: a SourceSafe internet/remote/web access solution</TITLE>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<META http-equiv=Content-Language content=en-us>
<META content="MSHTML 6.00.6000.16527" name=GENERATOR>
<META content=C# name=CODE_LANGUAGE>
<META content=JavaScript name=vs_defaultClientScript>
<META content=http://schemas.microsoft.com/intellisense/ie5 
name=vs_targetSchema><LINK 
href="Dynamsoft%20SourceAnywhere%20for%20VSS%20a%20SourceSafe%20internet-remote-web%20access%20solution_files/style.css" 
type=text/css rel=stylesheet>
<STYLE type=text/css>#Layer1 {
	PADDING-LEFT: 165px; Z-INDEX: 80; WIDTH: 29px; PADDING-TOP: 410px; POSITION: absolute; HEIGHT: 29px
}
</STYLE>

<SCRIPT language=JavaScript type=text/JavaScript>
<!--
var strProductName = new Array();
strProductName[0]="SourceAnywhere for VSS 5.1 Professional Edition (1 user)";
strProductName[1]="SourceAnywhere for VSS 5.1 Professional Edition (5 users)";
strProductName[2]="SourceAnywhere for VSS 5.1 Professional Edition (10 users)";
strProductName[3]="SourceAnywhere for VSS 5.1 Professional Edition (25 users)";
strProductName[4]="SourceAnywhere for VSS 5.1 Professional Edition (50 users)";
strProductName[5]="SourceAnywhere for VSS 5.1 Professional Edition (100 users)";

strProductName[6]="SourceAnywhere for VSS 5.1 Standard Edition (1 user)";
strProductName[7]="SourceAnywhere for VSS 5.1 Standard Edition (5 users)";
strProductName[8]="SourceAnywhere for VSS 5.1 Standard Edition (10 users)";
strProductName[9]="SourceAnywhere for VSS 5.1 Standard Edition (25 users)";
strProductName[10]="SourceAnywhere for VSS 5.1 Standard Edition (50 users)";
strProductName[11]="SourceAnywhere for VSS 5.1 Standard Edition (100 users)";

strProductName[12]="SourceAnywhere SDK Technical Support";

strProductName[13]="Upgrade to SourceAnywhere for VSS 5.1 Professional Edition from SourceAnyWhere 4 Professional Edition (per user)";
strProductName[14]="Upgrade to SourceAnywhere for VSS 5.1 Standard Edition from SourceAnyWhere 4 Standard Edition (per user)";
strProductName[15]="Upgrade to SourceAnywhere for VSS Professional Edition from same version Standard Edition (per user)";

function StringTrimRight(fullS) 
{
	if (fullS.length == 0)
		return fullS;
	
	while(fullS.charAt(fullS.length - 1) == " ")
	{	
		fullS = fullS.substring(0, fullS.length - 1);
	}
	return fullS;
}

function StringTrimLeft(fullS) 
{
	if (fullS.length == 0)
		return fullS;
		
	while(fullS.charAt(0) == " ")
	{		
		fullS = fullS.substring(1, fullS.length);
	}
	 
     return fullS;
}

function StringTrim(fullS) 
{
	return StringTrimRight(StringTrimLeft(fullS));	
}


function CalcAmount()
{
	var strDescription;
	var iQuantity=document.getElementsByName("Quantity");
	var fPrice=document.getElementsByName("Price");
	var i;
	var fAmount=0;
	var iQuantityTemp;
	var fPriceTemp;
	strDescription="";

	for(i=0;i<iQuantity.length;i++)
	{
		iQuantityTemp=iQuantity.item(i).value;
		fPriceTemp =fPrice.item(i).innerHTML;
		fPriceTemp =parseFloat(fPriceTemp);
		if (isNaN(iQuantityTemp))
		{
			iQuantityTemp = 0;
		}
		iQuantityTemp=parseInt(iQuantityTemp);
		
		if( iQuantityTemp < 0)
		{
			alert("Please input integer bigger than 0, thanks!");
			return;
		}
		
		if(!(isNaN(fPriceTemp)||isNaN(iQuantityTemp)))
		{
			fAmount=fAmount+fPriceTemp*iQuantityTemp;
			strDescription=strDescription+strProductName[i]+":"+iQuantityTemp+";";
		}
	}


	if (document.getElementById("oldLicenses").value != null)
	{
		var stroldLicenses = StringTrim(document.getElementById("oldLicenses").value);
		stroldLicenses = stroldLicenses.replace(/\r\n/g, ",");		
		stroldLicenses = stroldLicenses.replace(/\r/g, ",");		
		stroldLicenses = stroldLicenses.replace(/\n/g, ",");		
		if (stroldLicenses.length != 0)
			strDescription = strDescription + "oldLicenses:" + stroldLicenses;
	}

	var strAmount = fAmount.toString();	
	
	document.getElementById("Description").value=strDescription;	
	document.getElementById("Amount").value=strAmount;	
}

/*
function submitform()
{
	CalcAmount();
	var fAmount=document.getElementById("Amount").value;
	fAmount=parseFloat(fAmount);
	
	if(isNaN(fAmount))
	{
		fAmount=0;
	}
	
	if(fAmount<=0)
	{
		alert("Please input a quantity to proceed. Thanks.")
	}
	else
	{
		document.getElementById("frmVeriSign").submit();
	}
}
*/
function ConfirmOrder()
{	
	CalcAmount();
	CreateProductInfo();
	var fAmount=document.getElementById("Amount").value;
	fAmount=parseFloat(fAmount);

	if(isNaN(fAmount))
	{
		fAmount=0;
	}

	if(fAmount<=0)
	{
		alert("Please input a quantity to proceed. Thanks.")
		return;
	}
	
	document.getElementById("ordName").value = StringTrim(document.getElementById("ordName").value);

	if (document.getElementById("ordName").value == "")
	{
		alert("Please input Full Name. Thanks.")
		return;
	}

	document.getElementById("ordEmailAddress").value = StringTrim(document.getElementById("ordEmailAddress").value);	
	if (document.getElementById("ordEmailAddress").value == "")
	{	
		alert("Please input Email Address. Thanks.")
		return;
	}
	
	document.getElementById("ordEmailAddressRetype").value = StringTrim(document.getElementById("ordEmailAddressRetype").value);
	if (document.getElementById("ordEmailAddressRetype").value != document.getElementById("ordEmailAddress").value)
	{
		alert("Please check Email Address. Thanks.")
		return;
	}
	
	document.getElementById("ordAddress1").value = StringTrim(document.getElementById("ordAddress1").value);
	if (document.getElementById("ordAddress1").value == "")
	{
		alert("Please input Address Line 1. Thanks.")
		return;
	}
		
	document.getElementById("ordCity").value = 	StringTrim(document.getElementById("ordCity").value);
	if (document.getElementById("ordCity").value == "")
	{
		alert("Please input City. Thanks.")
		return;
	}
			
	document.getElementById("ordProvince").value = StringTrim(document.getElementById("ordProvince").value);
	if (document.getElementById("ordProvince").value == "")
	{
		alert("Please input State/Province. Thanks.")
		return;
	}
	
	document.getElementById("ordPostalCode").value = StringTrim(document.getElementById("ordPostalCode").value);
	if (document.getElementById("ordPostalCode").value == "")
	{
		alert("Please input Zip/Postal Code. Thanks.")
		return;
	}
	
	document.getElementById("ordCountry").value = StringTrim(document.getElementById("ordCountry").value);
	if (document.getElementById("ordCountry").value == "")
	{
		alert("Please input Country. Thanks.")
		return;
	}
	
	document.getElementById("ordPhoneNumber").value = StringTrim(document.getElementById("ordPhoneNumber").value);
	if (document.getElementById("ordPhoneNumber").value == "")
	{
		alert("Please input Phone Number. Thanks.")
		return;
	}
	
	document.getElementById("trnCardOwner").value = StringTrim(document.getElementById("trnCardOwner").value);
	if (document.getElementById("trnCardOwner").value == "")
	{
		alert("Please input Name on Card. Thanks.")
		return;
	}
		
	document.getElementById("trnCardNumber").value = StringTrim(document.getElementById("trnCardNumber").value); 
	if (document.getElementById("trnCardNumber").value == "")
	{
		alert("Please input Credit Card Number. Thanks.")
		return;
	}
	

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -