0

我正在嘗試在應用程序中使用SqlProfileProvider,似乎無法按照我想要的方式使用它。我想能夠簡單地調用了這樣的輪廓:SqlProfileProvider - 你可以在項目中使用Profile.GetProfile()嗎?

Profile p = Profile.GetProfile("naspinski"); 
p.Organization = "new_org"; 

,但我似乎無法找到使用GetProfile(),我似乎看到散落在網絡的正確方法。有沒有辦法抓取,閱讀和修改配置文件?

我在MVC 3中使用它,並將而不是實際上是作爲特定用戶登錄,這將從指定的db拉用戶。謝謝。

回答

3

要檢索的個人資料:

var profile = ProfileBase.Create(HttpContext.Profile.UserName, true); 

而這裏的MSDN documentation。以及有關自定義配置文件的nice blog post

+0

這是太棒了,正是我所期待的! – naspinski 2011-02-16 17:16:27

相關問題