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主頁?

回答

0

你嘗試類似的東西:

Response.Redirect("http://<crmserver>:<portnumber>/main.aspx"); 

編輯: 檢查做什麼,我想你微軟的這個選擇想要的:

+0

仍然重定向到登錄頁面。而不是主頁面 – chamara 2013-04-10 10:04:10

+0

所以你啓用了IFD,你想要一個自定義登錄,對不對?查看我的更新。 – 2013-04-10 10:18:07

+0

是的,我想自定義登錄,我已經成功完成自定義登錄身份驗證部分。認證後,重定向卡住。 – chamara 2013-04-10 17:21:51