0
我正在開發動態CRM定製在線身份驗證登錄。我能夠檢索記錄的用戶信息,現在我想將記錄的用戶重定向到CRM頁面。下面是我得到的。重定向到動態CRM主頁
// Now make an SDK call with the organization service proxy.
// Display information about the logged on user.
Guid userid = ((WhoAmIResponse)organizationProxy.Execute(
new WhoAmIRequest())).UserId;
SystemUser systemUser = organizationProxy.Retrieve("systemuser", userid,
new ColumnSet(new string[] { "firstname", "lastname" })).ToEntity<SystemUser>();
Response.Write("Logged on user is."+
systemUser.FirstName+" "+ systemUser.LastName);
成功檢索記錄的用戶信息如何重定向到CRM主頁?
仍然重定向到登錄頁面。而不是主頁面 – chamara 2013-04-10 10:04:10
所以你啓用了IFD,你想要一個自定義登錄,對不對?查看我的更新。 – 2013-04-10 10:18:07
是的,我想自定義登錄,我已經成功完成自定義登錄身份驗證部分。認證後,重定向卡住。 – chamara 2013-04-10 17:21:51