<script language="javascript">
<%
string strId = User.Identity.Name;
if (strId.IndexOf("\\") != -1) {
 string[] arry = strId.Split("\\".ToCharArray());
 if (arry.Length > 1)
  strId = arry[1];
}
Response.Write("var UserId = '"+ strId +"';");
%>
</script>
将以上代码加在C:\Program Files\Microsoft\Exchange Server\ClientAccess\owa\forms\premium目录下的
editcalendaritem.aspx以及editmessage.aspx的body标签后面即可

相关文章:

  • 2022-01-03
  • 2022-12-23
  • 2021-11-30
  • 2021-07-24
  • 2022-12-23
  • 2021-08-23
  • 2021-04-05
  • 2021-11-05
猜你喜欢
  • 2022-02-08
  • 2022-12-23
  • 2021-09-25
  • 2021-07-01
  • 2022-12-23
  • 2021-11-17
相关资源
相似解决方案