ComponentOne Excel и Asp.net MVC - PullRequest
       31

ComponentOne Excel и Asp.net MVC

0 голосов
/ 31 января 2012

Я работаю над действием, которое возвращает файл Excel - Excel создается с использованием ComponentOne dll.

Вот что у меня есть

public ActionResult DownloadExcel()
 {
            C1XLBook testBook = new C1XLBook();
            XLSheet s1 = testBook.Sheets[0];

            MemoryStream ms = new MemoryStream();
            testBook.Save(ms,FileFormat.Biff8);



            return File(ms, "application/ms-excel");
}

Но я получаю недопустимыйОшибка JSON

На стороне JS у меня есть следующий код

 $.ajax({

        contentType: 'application/json, charset=utf-8',
        type: "POST",
        url: /test/DownloadExcel,       
        cache: false,
        dataType: "json",

        success: function (response) {
            alert("good");            
        },

        error: function (xhr, ajaxOptions, thrownError) {

            alert("error");
        }

    });

Что я делаю не так?

...