C#调用ExchangeWebService发送邮件、查询日程、查询用户已使用邮箱空间
摘要:using System;using System.Net;using System.Collections.Generic;using EWS;using MailClient;namespace ExchangeWs { public class ExchangeWs { private ExchangeServiceBinding esb = null; private GetExchangeSetting ExchangeSetting = new GetExchangeSetting(); public ExchangeWs(strin...
阅读全文
posted @
2013-03-20 15:59
袁晓平
阅读(1656)
推荐(0)
exchange webservice访问类(日程新增和删除)
摘要:using System;using System.Collections.Generic;using System.Configuration;using System.Linq;using System.Net;using System.Text;using HPCalendarSyncToPT1.Common;using HPCalendarSyncToPT1.Exchange;namespace HPCalendarSyncToPT1{ public class ExchangeWebService { ExchangeServiceBinding esb =...
阅读全文
posted @
2013-03-15 17:41
袁晓平
阅读(940)
推荐(0)
owa 2007邮件选人二次改造
摘要:1.uglobal.js的调整,将shwAB函数改为如下代码:var arrTo = new Array();var arrCc = new Array();var arrBcc = new Array();function shwAB(sTgt,sA){ var oP=new Object(); oP.sTo=divTo.innerHTML; oP.sCc=divCc.innerHTML; oP.sBcc=divBcc.innerHTML; oP.sTgt=sTgt; oP.sVersion = '2007'; var url = '/ContactSelect...
阅读全文
posted @
2013-03-07 19:22
袁晓平
阅读(241)
推荐(0)
实现split类似功能的sql语句
摘要:declare @str as nvarchar(50)set @str = N'.0.1.1001.2002.3.204.5.106.'declare @str_tmp as nvarchar(30)declare @index as intdeclare @str_len as intselect @str_len=LEN(@str)select @index=CHARINDEX('.',@str, 1)if @index = 1set @str = RIGHT(@str, len(@str) - 1)if RIGHT(@str, 1) = '.
阅读全文
posted @
2013-03-06 13:52
袁晓平
阅读(228)
推荐(0)