0

mvc で XSLT 形式を返したいのですが、これの MIME タイプは何ですか?

 public FileResult DownloadTemplate(string templateCode)
    {
        try
        {
            var template = _manager.GetTemplateByCode(templateCode);
            const string fileName = "Template";
            return File(template.Value, System.Net.Mime.MediaTypeNames.Application.Octet, fileName);
        }
        catch (Exception ex)
        {
            return null;
        }
    } 
4

2 に答える 2

1

Fileヘルパーの署名は

FileContentResult File(byte[] fileContents, string contentType, string fileDownloadName)

これはあなたの質問に答えるのに十分な情報であるはずです。

于 2013-01-15T08:06:45.900 に答える
0

あなたはtext/xslその目的のために使うことができます:

public FileResult DownloadTemplate(string templateCode)
{
    try
    {
        var template = _manager.GetTemplateByCode(templateCode);
        const string fileName = "Template";
        return File(template.Value, "text/xsl", fileName);
    }
    catch (Exception ex)
    {
        return null;
    }
} 
于 2013-01-15T08:12:11.587 に答える