2006年5月24日
摘要:
Introduction to Collaboration Data Objects for Microsoft Exchange 2000 介绍了CDO的一些知识,并介绍了如何使用CDO协同Exchange Server进行工作。 文章中提供了几个使用CDO进行工作的示例,不过全部都是asp时代的代码,看着费劲,还是转换成c#巴:) 1 发送邮件'vb'Crea...
阅读全文
posted @ 2006-05-24 14:56
stswordman
阅读(603)
推荐(0)
摘要:
http://support.microsoft.com/?scid=ph;en-us;1760 Exchange Serverhttp://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnanchor/html/exchangesvr.asp Exchange Server脚本专家!- 存档 http://groups.y...
阅读全文
posted @ 2006-05-24 10:37
stswordman
阅读(349)
推荐(0)
2006年5月23日
摘要:
需要引用System.Web.Mail命名空间。引用该命名空间需要添加System.Web.Dll MailMessage mail = new MailMessage(); mail.BodyFormat=MailFormat.Html; mail.From ="some@server"; mail.To="some@server";//多个收件人之间用分号分割 mail...
阅读全文
posted @ 2006-05-23 16:39
stswordman
阅读(3379)
推荐(0)
2006年5月19日
摘要:
程序出自http://atlas.asp.net/docs/Walkthroughs/GetStarted/Basic.aspx Search for ScriptManager控件内的 标记包含页面所调用的webservice的文件名称。如下 然后通过javascript脚本调...
阅读全文
posted @ 2006-05-19 17:07
stswordman
阅读(412)
推荐(0)
摘要:
执行这段程序,点击Button1后,文本框中的内容呈现为当前的时间。UpdatePanel控件用放置需要更新或改变的控件,UpdatePanel控件内可包含多个标...
阅读全文
posted @ 2006-05-19 16:43
stswordman
阅读(375)
推荐(0)
2006年5月15日
摘要:
原文http://www.eggheadcafe.com/articles/20040527.asp引入com组件Microsoft Activex Data Object 2.x library和Microsoft CDO For Exchange 2000 libarary具体程序如下. using System; using System.Web; using CDO; using ADOD...
阅读全文
posted @ 2006-05-15 17:19
stswordman
阅读(2070)
推荐(0)
2006年5月10日
摘要:
代码出自http://www.c-sharpcorner.com//Code/2003/April/ListingADUsers.aspConsole.Write("Enter your Domain Name : ");string dom =Console.ReadLine();System.DirectoryServices.DirectoryEntry entry = new System.DirectoryServices.DirectoryEntry("LDAP://" + dom);System.DirectoryServices.Dire
阅读全文
posted @ 2006-05-10 13:38
stswordman
阅读(1071)
推荐(0)
2006年5月9日
摘要:
Always set the "applicationName" property when configuring ASP.NET 2.0 Membership and other Providers 转载 I helped out a few folks last night on the ASP.NET Forums with this problem, so I thought it mi...
阅读全文
posted @ 2006-05-09 12:35
stswordman
阅读(492)
推荐(0)
摘要:
当我执行insert操作后对OnItemInserted事件设置了断点 protected void DetailsView1_ItemInserted(object sender, DetailsViewInsertedEventArgs e) { //e.AffectedRows Response.Write("A:"+e.Affect...
阅读全文
posted @ 2006-05-09 12:16
stswordman
阅读(455)
推荐(0)