cool_sign.aspx
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:2k
源码类别:

OA系统

开发平台:

C#

  1. <%@ Page Language="C#" %>
  2. <html>
  3. <head>
  4. <title>安全签章控件设定</title>
  5. <script>
  6. function my_submit()
  7. {
  8.   if(ITEM_NAME.value=="")
  9.   {
  10.      alert("控件名称不能为空");
  11.      return;
  12.   }
  13.   var parent_window = parent.dialogArguments;
  14.   var control_html="<img src="/images/form/sign.gif" class="SIGN" align=absmiddle border=0 style="cursor:hand" value=""+ITEM_NAME.value.replace(""","&quot;")+"" title="签章控件:"+ITEM_NAME.value.replace(""","&quot;")+"">";
  15.   if(edit_flag==1)
  16.   {
  17.     oSelection =  parent.dialogArguments.document.selection.createRange();
  18.     oSelection(0).title=ITEM_NAME.value;
  19.     parent_window.doStyle("delete");
  20.     parent_window.insertHtml(control_html);
  21.   }
  22.   else
  23.     parent_window.EDIT_HTML.insertHtml(control_html);
  24.   window.close();
  25. }
  26. //-- 获取控件属性 --
  27. var edit_flag=0;
  28. function LoadDo()
  29. {
  30.   oSelection = dialogArguments.document.selection.createRange();
  31.   sRangeType = dialogArguments.document.selection.type;
  32.   if (sRangeType == "Control")
  33.   {
  34.    edit_flag=1;
  35.    ITEM_NAME.value = oSelection(0).value;
  36.   }
  37.   ITEM_NAME.focus();
  38. }
  39. </script>
  40. </head>
  41. <body topmargin="0" onload="LoadDo();">
  42. <table border="0" cellspacing="1" width="100%" class="small" bgcolor="#ffffff" cellpadding="3" align="center">
  43.   <tr class="TableContent">
  44.       <td nowrap>控件名称:
  45.       </td>
  46.       <td nowrap>
  47.       <Input name="ITEM_NAME" type="text" class="SmallInput" size="30">
  48.       </td>
  49.   </tr>
  50.   <tr class="TableControl">
  51.       <td nowrap align="center" colspan=2>
  52.        <input type="button" onclick="my_submit();" value="确 定" class="SmallButton">
  53.       </td>
  54.   </tr>
  55. </table>
  56. </body>
  57. </html>