我正在构建一个 ASP.NET MVC3 应用程序,在其中打印一些文件。这是我进行打印的代码部分:
public ActionResult Barcode(string DocumentID)
{
barkod = new Barcode(DocumentID);
MemoryStream ms = new MemoryStream();
barkod.image.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
Print(barkod);
return Redirect("Home/Index");
}
这可能很愚蠢,但我怎么能只打印而不在这里做任何其他事情,没有重定向或其他任何事情?
我尝试EmptyResult
并返回 null,但它给了我空白页。