1

在 ms 动态 crm 中,我将在自己的功能区按钮上创建一个带有一些联系人属性的文本文件。我想将此文件保存或下载到客户端计算机,以便用户可以使用它。

我怎样才能做到这一点?在测试很多不同的方法时,我快疯了。

  • 使用 javascript 创建一个字符串并尝试使用数据 uri 下载它。不工作

    var content = "test";

    window.open("data:text/octet-stream," + encodeURIComponent(content));

  • 尝试使用silverlight(本地我可以创建一个文件)但远程不起作用

  • 下一次尝试是在服务器上用 javascript 填充/创建一个 *.aspx 文件并创建一个文本文件。但我不知道这是否有效,否则我还能做什么?

请给我一些提示来解决这个问题。

4

1 回答 1

0

好的,我解决了。

在 crm 我集成了 javascript 代码来打开一个 aspx 站点。

function CreateVCF() 
{
   var entityName = Xrm.Page.data.entity.getEntityName();
   var guid = Xrm.Page.data.entity.getId();
   window.open("http://xxxxx/vcfexport.aspx?guid="+guid+ "&name="+entityName );
}

在那里我创建了一个电子名片并将其返回下载

public partial class vcfexport : System.Web.UI.Page {
    protected void Page_Load(object sender, EventArgs e) {

        //Authenticate using credentials of iis       
        ClientCredentials Credentials = new ClientCredentials();

        Uri OrganizationUri = new Uri("http://server/org/XRMServices/2011/Organization.svc");
        Uri HomeRealmUri = null;

        OrganizationServiceProxy serviceProxy = new OrganizationServiceProxy(OrganizationUri, HomeRealmUri, Credentials, null);

        IOrganizationService service = (IOrganizationService)serviceProxy;

        String guidString = Request.QueryString["guid"];
        String entityName = Request.QueryString["name"];

        if (guidString != null && entityName != null && guidString != "" && entityName != "") {

            ColumnSet columnSet = new ColumnSet(true);
            Guid guid = new Guid(guidString);

            // retrieve the contact dataset
            Entity contactEntity = service.Retrieve(entityName, guid, columnSet);

            // create new vcard
            VCard vcard = new VCard();
            vcard.FirstName = contactEntity.GetAttributeValue<String>("firstname");
            vcard.LastName = contactEntity.GetAttributeValue<String>("lastname");
            //......

            String fileName = vcard.LastName + " " + vcard.FirstName + ".vcf";

            Response.ContentType = "text/x-vcard";
            Response.AppendHeader("Content-Disposition", "attachment; filename=" + fileName);
            // give download window
            Response.Write(vcard.ToString());
            Response.End();


        } else {
            lblError.Text = "Es ist ein Fehler aufgetreten. Entityname oder guid sind falsch";
        }
    }
于 2013-02-15T12:33:33.460 回答