Default.aspx.cs
资源名称:GetFriend.rar [点击查看]
上传用户:asz878
上传日期:2020-04-01
资源大小:189k
文件大小:1k
源码类别:
WEB邮件程序
开发平台:
Visual C++
- /*
- * 作者:方宏俊
- * 日期:2008-10-23
- * 描述:测试获取MSN好友。
- * 该源码下载自www.51aspx.com(51aspx.com)
- * * */
- using System;
- using System.Collections.Generic;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using Fhz.Msn.OpenContactsNet;
- namespace Fhz.MSN.GetFriend
- {
- public partial class _Default : System.Web.UI.Page
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- // 提取的列表集合类
- MailContactList list;
- // MSN Live 提取类
- IMailContactExtract extractor = new LiveExtract();
- extractor.Extract(new System.Net.NetworkCredential("51aspx@hotmail.com", "pwd"), out list);
- gv.DataSource = list;
- gv.DataBind();
- Response.Write("如果没有显示好友列表信息,请配置26行中您的msn帐号和密码然后编译查看效果");
- }
- }
- }