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

OA系统

开发平台:

C#

  1. <%@ Page Language="C#" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5.     <title>部门人员控件设定</title>
  6.     <script>
  7. function my_submit()
  8. {
  9.   if(ITEM_NAME.value=="")
  10.   {
  11.      alert("控件名称不能为空");
  12.      return;
  13.   }
  14.   if(edit_flag==0)
  15.   {
  16.      var parent_window = parent.dialogArguments;
  17.      var control_html="<img src="/images/form/user.gif" class="USER" align=absmiddle border=0 style="cursor:hand" value=""+ITEM_NAME.value.replace(""","&quot;")+"" title="部门人员控件:"+ITEM_NAME.value.replace(""","&quot;")+"">";
  18.      parent_window.EDIT_HTML.insertHtml(control_html);
  19.   }
  20.   else
  21.   {
  22.      oSelection = dialogArguments.document.selection.createRange();
  23.      sRangeType = dialogArguments.document.selection.type;
  24.      if (sRangeType == "Control")
  25.      {
  26.     oSelection(0).value = ITEM_NAME.value;
  27.     oSelection(0).title = "部门人员控件:"+ITEM_NAME.value;
  28.      }
  29.   }
  30.   window.close();
  31. }
  32. //-- 获取控件属性 --
  33. var edit_flag=0;
  34. function LoadDo()
  35. {
  36.   oSelection = dialogArguments.document.selection.createRange();
  37.   sRangeType = dialogArguments.document.selection.type;
  38.   if (sRangeType == "Control")
  39.   {
  40.    edit_flag=1;
  41.    ITEM_NAME.value = oSelection(0).value;
  42.   }
  43.   ITEM_NAME.focus();
  44. }
  45. </script>
  46. </head>
  47. <body topmargin="0" onload="LoadDo();">
  48. <table border="0" cellspacing="1" width="100%" class="small" bgcolor="#ffffff" cellpadding="3" align="center">
  49.   <tr class="TableContent">
  50.       <td nowrap><b>对应的输入框控件名称</b>:
  51.       </td>
  52.       <td nowrap>
  53.        <Input name="ITEM_NAME" type="text" class="SmallInput" size="20">
  54.       </td>
  55.   </tr>
  56.   <tr class="TableData">
  57.       <td colspan="2">说明:部门人员控件选择的部门、人员将回填到该输入框中
  58.       </td>
  59.   </tr>
  60.   <tr>
  61.       <td class="TableControl" colspan="2" align="center">
  62.         <input type="submit" onclick="my_submit();" value="确 定" class="SmallButton">
  63.       </td>
  64.   </tr>
  65. </table>
  66. </body>
  67. </html>