1\读取所有PROFILE用户信息
程序代码
GridView1.DataSource = ProfileManager.GetAllProfiles(ProfileAuthenticationOption.All);
GridView1.DataBind();
GridView1.DataBind();
2\该ProfileInfo对象集合是由 ProfileManager的GetAllProfiles方法获得的。当你点击GridView1中的任意一行的Select链接时,你将会看到该用户的自定义基本资料表;
protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
{
ProfileCommon SelectedProfile = Profile.GetProfile(GridView1.SelectedValue.ToString());
TextBox1.Text = SelectedProfile.QQ;
TextBox2.Text = SelectedProfile.msn;
}
3\DataKeyNames 属性指定数据键 早上测试时就漏了这个关键字导致无法正常显示这里的DataKeyNames=UserName
详细的源码将在后面上传给大家下载参考