Asp.net源码专业站
首页->商务办公->科信客户关系管理系统源码>>fckeditor/editor/dialog/fck_about.html>>源码在线查看
温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:科信客户关系管理系统源码
当前文件:文件类型 KeXinCrm/fckeditor/editor/dialog/fck_about.html[5K,2009-6-12 11:46:27]打开代码结构图
普通视图
		            
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 2<!-- 3 * FCKeditor - The text editor for Internet - http://www.fckeditor.net 4 * Copyright (C) 2003-2007 Frederico Caldeira Knabben 5 * 6 * == BEGIN LICENSE == 7 * 8 * Licensed under the terms of any of the following licenses at your 9 * choice: 10 * 11 * - GNU General Public License Version 2 or later (the "GPL") 12 * http://www.gnu.org/licenses/gpl.html 13 * 14 * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 15 * http://www.gnu.org/licenses/lgpl.html 16 * 17 * - Mozilla Public License Version 1.1 or later (the "MPL") 18 * http://www.mozilla.org/MPL/MPL-1.1.html 19 * 20 * == END LICENSE == 21 * 22 * File Name: fck_about.html 23 * "About" dialog window. 24 * 25 * File Authors: 26 * Frederico Caldeira Knabben (www.fckeditor.net) 27--> 28<html xmlns="http://www.w3.org/1999/xhtml"> 29<head> 30 <title></title> 31 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 32 <meta name="robots" content="noindex, nofollow" /> 33 <script src="common/fck_dialog_common.js" type="text/javascript"></script> 34 <script type="text/javascript"> 35 36var oEditor = window.parent.InnerDialogLoaded() ; 37var FCKLang = oEditor.FCKLang ; 38 39window.parent.AddTab( 'About', FCKLang.DlgAboutAboutTab ) ; 40window.parent.AddTab( 'License', FCKLang.DlgAboutLicenseTab ) ; 41window.parent.AddTab( 'BrowserInfo', FCKLang.DlgAboutBrowserInfoTab ) ; 42 43// Function called when a dialog tag is selected. 44function OnDialogTabChange( tabCode ) 45{ 46 ShowE('divAbout', ( tabCode == 'About' ) ) ; 47 ShowE('divLicense', ( tabCode == 'License' ) ) ; 48 ShowE('divInfo' , ( tabCode == 'BrowserInfo' ) ) ; 49} 50 51function SendEMail() 52{ 53 var eMail = 'mailto:' ; 54 eMail += 'fredck' ; 55 eMail += '@' ; 56 eMail += 'fckeditor' ; 57 eMail += '.' ; 58 eMail += 'net' ; 59 60 window.location = eMail ; 61} 62 63window.onload = function() 64{ 65 // Translate the dialog box texts. 66 oEditor.FCKLanguageManager.TranslatePage(document) ; 67 68 window.parent.SetAutoSize( true ) ; 69} 70 71 </script> 72</head> 73<body style="overflow: hidden"> 74 <div id="divAbout"> 75 <table cellpadding="0" cellspacing="0" border="0" width="100%" style="height: 100%"> 76 <tr> 77 <td> 78 <img alt="" src="fck_about/logo_fckeditor.gif" width="236" height="41" align="left" /> 79 <table width="80" border="0" cellspacing="0" cellpadding="5" bgcolor="#ffffff" align="right"> 80 <tr> 81 <td align="center" nowrap="nowrap" style="border-right: #000000 1px solid; border-top: #000000 1px solid; 82 border-left: #000000 1px solid; border-bottom: #000000 1px solid"> 83 <span fcklang="DlgAboutVersion">version</span> 84 <br /> 85 <b>2.4</b><br /> 86 Build 1148</td> 87 </tr> 88 </table> 89 </td> 90 </tr> 91 <tr style="height: 100%"> 92 <td align="center"> 93 &nbsp;<br /> 94 <span style="font-size: 14px" dir="ltr"> 95 <br /> 96 <b><a href="http://www.fckeditor.net/?about" target="_blank" title="Visit the FCKeditor web site"> 97 Support <b>Open Source</b> Software</a></b> </span> 98 <br /> 99 <br /> 100 <br /> 101 <span fcklang="DlgAboutInfo">For further information go to</span> <a href="http://www.fckeditor.net/?About" 102 target="_blank">http://www.fckeditor.net/</a>. 103 <br /> 104 Copyright &copy; 2003-2007 <a href="#" onclick="SendEMail();">Frederico Caldeira Knabben</a> 105 </td> 106 </tr> 107 <tr> 108 <td align="center"> 109 <img alt="" src="fck_about/logo_fredck.gif" width="87" height="36" /> 110 </td> 111 </tr> 112 </table> 113 </div> 114 <div id="divLicense" style="display: none"> 115 <p> 116 Licensed under the terms of any of the following licenses at your 117 choice: 118 </p> 119 <ul> 120 <li style="margin-bottom:15px"> 121 <b>GNU General Public License</b> Version 2 or later (the "GPL")<br /> 122 <a href="http://www.gnu.org/licenses/gpl.html" target="_blank">http://www.gnu.org/licenses/gpl.html</a> 123 </li> 124 <li style="margin-bottom:15px"> 125 <b>GNU Lesser General Public License</b> Version 2.1 or later (the "LGPL")<br /> 126 <a href="http://www.gnu.org/licenses/lgpl.html" target="_blank">http://www.gnu.org/licenses/lgpl.html</a> 127 </li> 128 <li> 129 <b>Mozilla Public License</b> Version 1.1 or later (the "MPL")<br /> 130 <a href="http://www.mozilla.org/MPL/MPL-1.1.html" target="_blank">http://www.mozilla.org/MPL/MPL-1.1.html</a> 131 </li> 132 </ul> 133 </div> 134 <div id="divInfo" style="display: none" dir="ltr"> 135 <table align="center" width="80%" border="0"> 136 <tr> 137 <td> 138 <script type="text/javascript"> 139<!-- 140document.write( '<b>User Agent<\/b><br />' + window.navigator.userAgent + '<br /><br />' ) ; 141document.write( '<b>Browser<\/b><br />' + window.navigator.appName + ' ' + window.navigator.appVersion + '<br /><br />' ) ; 142document.write( '<b>Platform<\/b><br />' + window.navigator.platform + '<br /><br />' ) ; 143 144var sUserLang = '?' ; 145 146if ( window.navigator.language ) 147 sUserLang = window.navigator.language.toLowerCase() ; 148else if ( window.navigator.userLanguage ) 149 sUserLang = window.navigator.userLanguage.toLowerCase() ; 150 151document.write( '<b>User Language<\/b><br />' + sUserLang ) ; 152//--> 153 </script> 154 </td> 155 </tr> 156 </table> 157 </div> 158</body> 159</html> 160
还没有找到您心仪的内容?请用.net源码大搜捕
代码片断 打包下载该项目完整源码:科信客户关系管理系统源码
51Aspx.com 版权所有 CopyRight © 2006-2010. 京ICP备06046876号 本站法律顾问:ITlaw-庄毅雄律师
返回顶部
客户服务:点击这里进行客户咨询 业务合作:点击这里洽谈业务合作 合作热线:010-68880146