0

Dynamic 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 のメイン ページにリダイレクトする方法を教えてください。

4

1 に答える 1

0

あなたはそのようなことを試しましたか:

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

編集: Microsoft のこのオプションをチェックして、あなたが望むと思うことを実行してください:

于 2013-04-10T09:57:26.203 に答える