我整天都在努力保存个人资料,但无法完成。
我可以创建个人资料,删除,但不能编辑详细信息!
在忙碌了一段时间之后,在查看了 SQL Server Profiler 日志之后,我明白我确实在保存详细信息,但不知何故,同一个 sproc 正在用以前的详细信息更新记录!尝试调试,但页面或母版页的 pageload 事件均未命中!
数据库事务可能有问题吗?但是我的代码没有事务处理功能,所以我怀疑它是否必须对回滚或类似的东西做任何事情!
这是我的代码,以防万一有人能找到错误!
网络配置
<profile defaultProvider="CustSqlProfileProvider" enabled="true">
<providers>
<add name="CustSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="connString" applicationName="/save_online"/>
</providers>
<properties>
<add name="FirstName" type="System.String"/>
<add name="LastName" type="System.String"/>
<add name="Email" type="System.String"/>
<group name="Address">
<add name="Street" type="System.String"/>
<add name="City" type="System.String"/>
<add name="PostalCode" type="System.String"/>
</group>
<group name="Contact">
<add name="Phone" type="System.String"/>
<add name="Mobile" type="System.String"/>
</group>
<add name="ShoppingCart" type="psb.website.BLL.Store.ShoppingCart" serializeAs="Binary" allowAnonymous="true"/>
</properties>
</profile>
代码
private void UpdateProfile()
{
ProfileCommon myprofile = this.Profile.GetProfile(HttpContext.Current.User.Identity.Name);
myprofile.FirstName = tbFirstName.Text.Trim();
myprofile.LastName = tbLastName.Text.Trim();
myprofile.Email = tbEmail.Text.Trim();
myprofile.Address.Street = tbStreetPhysical.Text.Trim();
myprofile.Address.City = tbCity.Text.Trim();
myprofile.Address.PostalCode = tbPostalCode.Text.Trim();
myprofile.Contact.Phone = tbPhone1.Text.Trim();
myprofile.Contact.Mobile = tbMobile.Text.Trim();
myprofile.Save();
}
在 SQL 事件探查器跟踪中
exec dbo.aspnet_Profile_SetProperties在调用 ProfileCommon 的 save() 时使用正确的值执行,并且在页面完成加载后,使用以前的值再次执行相同的 st.procedure。怎么叫第二次?!这太烦人了!!
来自 SQL Server Profiler 的这些数据会有帮助吗?
-- network protocol: LPC
set quoted_identifier on
set arithabort off
set numeric_roundabort off
set ansi_warnings on
set ansi_padding on
set ansi_nulls on
set concat_null_yields_null on
set cursor_close_on_commit off
set implicit_transactions off
set language us_english
set dateformat mdy
set datefirst 7
set transaction isolation level read committed
更多信息:管理员能够更新其他用户的个人资料信息,但不能更新他自己的个人资料。其他网站用户也无法更新他们的个人资料信息!
多奇怪!
有人请保释我!