Tag: 个人资料

如何在ASP.NET中使用Profile?

我尝试学习asp.net Profile Management。 但我添加了xml firstName,LastName和其他。 但我不能写简介。 如果我尝试编写Profile属性。 卓尔我的编辑器配置文件: 错误1当前上下文中不存在名称“配置文件”C:\ Documents and Settings \ ykaratoprak \ Desktop \ Security \ WebApp_profile \ WebApp_profile \ Default.aspx.cs 18 13 WebApp_profile我该怎么做? protected void Button1_Click(object sender, System.EventArgs e) { Profile.FirstName = TextBox1.Text; Profile.LastName = TextBox2.Text; Profile.Age = TextBox3.Text; Profile.City = TextBox4.Text; Label1.Text = “Profile stored successfully!” + “First Name: ” […]