intento aprender asp.net Profile management. Pero agregué a continuación xml firstName, LastName y otros. Pero no puedo escribir Perfil. si intento escribir la propiedad Perfil. drow my editor Perfil: Error 1 El nombre 'Perfil' no existe en el contexto actual C: \ Documents and Settings \ ykaratoprak \ Desktop \ Security \ WebApp_profile \ WebApp_profile \ Default.aspx.cs 18 13 WebApp_profile Cómo puedo ¿Haz eso?¿Cómo usar el perfil en ASP.NET?
<authentication mode="Windows"/>
<profile>
<properties>
<add name="FirstName"/>
<add name="LastName"/>
<add name="Age"/>
<add name="City"/>
</properties>
</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!<br />" +
"<br />First Name: " + Profile.FirstName +
"<br />Last Name: " + Profile.LastName +
"<br />Age: " + Profile.Age +
"<br />City: " + Profile.City;
}
alt text http://i47.tinypic.com/20juh2.gif
¿Qué pasa si haces 'Context.Profile'? –
bien, pero ¿dónde está Lastname y otros :( – Penguen
¿Les está dando acceso anónimo ?, por ejemplo, ' ' en web.config? –