<profile>
<providers>
<clear/>
<add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/"/>
</providers>
<properties>
<add name="FirstName"/>
<add name="LastName"/>
</properties>
</profile>
我的代碼片段上方我的webconfig文件。我試圖在register.aspx頁面上的代碼隱藏中設置FirstName屬性。像這樣:
Profile.FirstName = ((TextBox)RegisterUser.CreateUserStep.ContentTemplateContainer.FindControl("FirstName")).Text;
VS表示Profile在System.Web.Profile命名空間中。然後我使用它像這樣的「System.Web.Profile.FirstName」,但是在System.Web.Profile.FirstName命名空間中不存在名字。
如何設置屬性並稍後檢索它?
你可以發佈多一點你的代碼,特別是我期待看到'Profile'是什麼? – CodingGorilla 2010-12-16 16:40:31