show.js
上传用户:avia982301
上传日期:2008-10-30
资源大小:557k
文件大小:5k
源码类别:

.net编程

开发平台:

C#

  1. /*
  2. *######################################
  3. * eWebEditor v4.00 - Advanced online web based WYSIWYG HTML editor.
  4. * Copyright (c) 2003-2007 eWebSoft.com
  5. *
  6. * For further information go to http://www.ewebsoft.com/
  7. * This copyright notice MUST stay intact for use.
  8. *######################################
  9. */
  10. document.write ("<table id=eWebEditor_Layout border=0 cellpadding=0 cellspacing=0 width='100%' height='100%'>");
  11. document.write ("<tr><td>");
  12. showToolbar();
  13. document.write ("</td></tr>");
  14. document.write ("<tr><td height='100%'>");
  15. document.write (" <table border=0 cellpadding=0 cellspacing=0 width='100%' height='100%'>");
  16. document.write (" <tr><td height='100%'>");
  17. document.write (" <input type='hidden' ID='ContentEdit' value=''>");
  18. document.write (" <input type='hidden' ID='ModeEdit' value=''>");
  19. document.write (" <input type='hidden' ID='ContentLoad' value=''>");
  20. document.write (" <input type='hidden' ID='ContentFlag' value='0'>");
  21. document.write (" <iframe class='Composition' ID='eWebEditor' MARGINHEIGHT='1' MARGINWIDTH='1' width='100%' height='100%' scrolling='yes'> ");
  22. document.write (" </iframe>");
  23. document.write (" </td></tr>");
  24. document.write (" </table>");
  25. document.write ("</td></tr>");
  26. if (config.StateFlag=="1"){
  27. document.write ("<tr><td height=25>");
  28. document.write (" <TABLE border='0' cellPadding='0' cellSpacing='0' width='100%' class=StatusBar height=25>");
  29. document.write (" <TR valign=middle>");
  30. document.write (" <td>");
  31. document.write (" <table border=0 cellpadding=0 cellspacing=0 height=20>");
  32. document.write (" <tr>");
  33. document.write (" <td width=10></td>");
  34. document.write (" <td class=StatusBarBtnOff id=eWebEditor_CODE onclick="setMode('CODE')" unselectable=on><img border=0 src='buttonimage/" + config.ButtonDir + "/modecode.gif' width=20 height=15 align=absmiddle>" + lang["StatusModeCode"] + "</td>");
  35. document.write (" <td width=5></td>");
  36. document.write (" <td class=StatusBarBtnOff id=eWebEditor_EDIT onclick="setMode('EDIT')" unselectable=on><img border=0 src='buttonimage/" + config.ButtonDir + "/modeedit.gif' width=20 height=15 align=absmiddle>" + lang["StatusModeEdit"] + "</td>");
  37. document.write (" <td width=5></td>");
  38. document.write (" <td class=StatusBarBtnOff id=eWebEditor_TEXT onclick="setMode('TEXT')" unselectable=on><img border=0 src='buttonimage/" + config.ButtonDir + "/modetext.gif' width=20 height=15 align=absmiddle>" + lang["StatusModeText"] + "</td>");
  39. document.write (" <td width=5></td>");
  40. document.write (" <td class=StatusBarBtnOff id=eWebEditor_VIEW onclick="setMode('VIEW')" unselectable=on><img border=0 src='buttonimage/" + config.ButtonDir + "/modeview.gif' width=20 height=15 align=absmiddle>" + lang["StatusModeView"] + "</td>");
  41. document.write (" </tr>");
  42. document.write (" </table>");
  43. document.write (" </td>");
  44. if (sFullScreen!="1"){
  45. document.write (" <td align=right>");
  46. document.write (" <table border=0 cellpadding=0 cellspacing=0 height=20>");
  47. document.write (" <tr>");
  48. document.write (" <td style='cursor:pointer;' onclick='sizeChange(300)'><img border=0 SRC='buttonimage/" + config.ButtonDir + "/sizeplus.gif' width=20 height=20 alt='" + lang["SizePlus"] + "'></td>");
  49. document.write (" <td width=5></td>");
  50. document.write (" <td style='cursor:pointer;' onclick='sizeChange(-300)'><img border=0 SRC='buttonimage/" + config.ButtonDir + "/sizeminus.gif' width=20 height=20 alt='" + lang["SizeMinus"] + "'></td>");
  51. document.write (" <td width=40></td>");
  52. document.write (" </tr>");
  53. document.write (" </table>");
  54. document.write (" </td>");
  55. }
  56. document.write (" </TR>");
  57. document.write (" </Table>");
  58. document.write ("</td></tr>");
  59. }
  60. document.write ("</table>");
  61. document.write ("<div id='eWebEditor_Temp_HTML' style='VISIBILITY: hidden; OVERFLOW: hidden; POSITION: absolute; WIDTH: 1px; HEIGHT: 1px'></div>");
  62. document.write ("<form id='eWebEditor_UploadForm' action='" + config.ServerExt + "/upload." + config.ServerExt + "?action=remote&type=remote&style=" + config.StyleName + "&language=" + AvailableLangs["Active"] + "' method='post' target='eWebEditor_UploadTarget'>");
  63. document.write ("<input type='hidden' name='eWebEditor_UploadText'>");
  64. document.write ("</form>");
  65. document.write ("<iframe name='eWebEditor_UploadTarget' width=0 height=0></iframe>");
  66. document.write ("<div id=divProcessing style='width:200px;height:30px;position:absolute;display:none'>");
  67. document.write ("<table border=0 cellpadding=0 cellspacing=1 bgcolor='#000000' width='100%' height='100%'><tr><td bgcolor=#3A6EA5><marquee align='middle' behavior='alternate' scrollamount='5' style='font-size:9pt'><font color=#FFFFFF>" + lang["MsgRemoteUploading"] + "</font></marquee></td></tr></table>");
  68. document.write ("</div>");