我正在开发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主页?
答案 0 :(得分:0)
你有没有尝试过这样的事情:
Response.Redirect("http://<crmserver>:<portnumber>/main.aspx");
编辑: 检查Microsoft的这些选项,以执行我认为您想要的操作: