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

OA系统

开发平台:

C#

  1. <%@ Control Inherits="CuteEditor.EditorUtilityCtrl" Language="c#" AutoEventWireup="false" TargetSchema="http://schemas.microsoft.com/intellisense/ie5" %>
  2. <fieldset><legend>[[Hyperlink_Information]]</legend>
  3. <table class="normal">
  4. <tr>
  5. <td style="width:60px">[[Url]]:</td>
  6. <td colspan="3"><input type="text" id="inp_src" style="width:260px" />
  7. </td>
  8. <td><button id="btnbrowse">[[Browse]]</button></td>
  9. </tr>
  10. <tr>
  11. <td style="width:60px">[[Type]]:</td>
  12. <td>
  13. <select id="sel_protocol" onchange="sel_protocol_change()">
  14. <option value="http://">http://</option>
  15. <option value="https://">https://</option>
  16. <option value="ftp://">ftp://</option>
  17. <option value="news://">news://</option>
  18. <option value="mailto:">mailto:</option>
  19. <!-- last one : if move this to front , change the script too -->
  20. <option value="others">[[Other]]</option>
  21. </select>
  22. </td>
  23. <td>
  24. [[Target]]: 
  25. </td>
  26. <td>
  27. <select id="inp_target" name="inp_target">
  28. <option value="" selected="selected">[[NotSet]]</option>
  29. <option value="_blank">[[Newwindow]]</option>
  30. <option value="_self">[[Samewindow]]</option>
  31. <option value="_top">[[Topmostwindow]]</option>
  32. <option value="_parent">[[Parentwindow]]</option>
  33. </select>
  34. </td>
  35. <td>
  36. </td>
  37. </tr>
  38. <tr>
  39. <td valign="middle" style="white-space:nowrap" >[[ID]]:</td>
  40. <td>
  41. <input type="text" id="inp_id" size="14" />
  42. </td>
  43. <td>[[CssClass]]:</td>
  44. <td>
  45. <input type="text" id="inp_class" size="14" />
  46. </td>
  47. <td></td>
  48. </tr>
  49. <tr>
  50. <td valign="middle" style="white-space:nowrap" >[[AccessKey]]:</td>
  51. <td colspan="4">
  52. <input type="text" id="inp_access" size="2" maxlength="1" />
  53. &nbsp;
  54. [[TabIndex]]:&nbsp;
  55. <input type="text" id="inp_index" size="5" maxlength="5" onkeypress="return CancelEventIfNotDigit()" />
  56. &nbsp;
  57. [[Color]]:&nbsp;
  58. <input autocomplete="off" type="text" id="inp_color" size="7" style='behavior:url(Load.ashx?type=htc&file=ColorPicker.htc)'
  59. oncolorpopup="this.selectedColor=value" oncolorchange="this.value=this.selectedColor;inp_color.style.backgroundColor=this.selectedColor;FireUIChanged()" />
  60. </td>
  61. </tr>
  62. <tr>
  63. <td>[[Title]]:</td>
  64. <td colspan="3">
  65. <textarea id="inp_title" rows="2" cols="20" style="width:260px"></textarea>
  66. </td>
  67. <td></td>
  68. </tr>
  69. <tr>
  70. <td align="right"></td>
  71. <td colspan="4">
  72. <input type="checkbox" id="inp_checked" onclick="ToggleAnchors();" />[[SelectAnchor]]
  73. <br />
  74. <select size="5" name="allanchors" style="width: 255" id="allanchors" onchange="selectAnchor(this.value);"></select>
  75. </td>
  76. </tr>
  77. </table>
  78. </fieldset>
  79. <script type="text/javascript" src="Load.ashx?type=dialogscript&file=Dialog_Tag_A.js"></script>