Exchange2007新建郵件頁面里加涉密資訊提示的實現方法(世博局)

weixin_34262482發表於2009-08-14
關於在Exchange2007新建郵件頁面里加涉密資訊提示的實現方法(世博局)
1、修改editmessage.aspx(8.1.240.5/forms/premium/editmessage.aspx)

<table class="w100" cellpadding="0" cellspacing="0">
<tr>
 <td><% this.Toolbar.Render(Response.Output); %></td>
</tr>

<tr>
 <td class=ibc><% RenderingUtilities.RenderErrorInfobar(UserContext, Response.Output, "divErr"); Infobar.Render(Response.Output); %></td>
</tr>
之間加上如下程式碼:
<tr>
 <td class=ibc>
 
  <div style="margin-Left:100px;margin-top:5px;"><input id="chkSecurity" name="chkSecurity" onclick="javascript:setSensitivity(this);" type="checkbox" /><label style="color:Red">如需發至世博局外網郵箱或外單位郵箱,請打勾!(群發建議不超過60人)</label></div>
<script>
a_iSens = 3;
function setSensitivity(btn) {
 if (btn.checked)
  a_iSens = 0;
 else
  a_iSens = 3;
}
</script>
 </td>
</tr>
2、修改fedtmsg.js(8.1.240.5/scripts/premium/fedtmsg.js)
修改函式ldMOptDlgScr
function ldMOptDlgScr() {
 if(scptMOpt.readyState=="loaded"){
  。。。。。。
  var oSelSens =  document.getElementById('selSens');
  if (oSelSens) {
   try{
    oSelSens.onchange = function() {
     if (oSelSens.selectedIndex == 3)
      document.getElementById("chkSecurity").checked = false;
     else
      document.getElementById("chkSecurity").checked = true;
    }
   }catch(e){}
  }
 }else {
  。。。。。。
 }
}

相關文章