Sort Score
Result 10 results
Languages All
Labels All
Results 61 - 70 of 713 for

asp.net

(0.15 sec)
  1. Document viewer API on GroupDocs Blog | Documen...

    Document viewer API on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Document viewer API on GroupDocs Blog | Document Automation Solutions for .NET & J......Developers ایجاد Document Viewer در ASP.NET Core MVC برای بیش از 140 فرمت...ایجاد یک نمایشگر سند جهانی در ASP.NET MVC بنویسم. ما قصد داریم یک...

    blog.groupdocs.com/fa/tag/document-viewer-api/i...
  2. Loading Documents from Streams with the GroupDo...

    Greetings! As you may noticed, in most GroupDocs.Viewer for .NET sample projects, target documents are presented in the form of files. They are usually placed in the “testfiles” folder, which is specified in the Global.asax. So you might think that GroupDocs.Viewer can work with files only. But this is not true - GroupDocs.Viewer can also load documents from byte streams (System.IO.Stream). Moreover, there are no limitations on the type of stream: whether it’s a FileStream, a MemoryStream or a NetworkStream - GroupDocs....streams, how to use streams in ASP.NET WebForms and also in MVC projects...guides on how to use streams in ASP.NET WebForms and MVC projects,...

    blog.groupdocs.com/viewer/loading-documents-str...
  3. New release for MVC Front End for GroupDocs.Edi...

    Great news for Asp.net Developers, GroupDocs proudly announces latest release for GroupDocs.Editor for .NET MVC Modern Front End. In this v1.1 we have used modern Template in Asp.net MVC. This new release is simple, efficient and, user friendly. User can convert Word Document to Html and convert updated Html to Word/PDF Document and download. View the HTML in WYSIWYG Editor and perform editing in HTML file. We would recommend you to download this release and provide your valuable feedback....Great news for ASP.NET Developers , GroupDocs proudly announces...have used modern Template in ASP.NET MVC . This new release is simple...

    blog.groupdocs.com/editor/new-release-mvc-front...
  4. GroupDocs.Viewer for .NET on GroupDocs Blog | D...

    GroupDocs.Viewer for .NET on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in GroupDocs.Viewer for .NET on GroupDocs Blog | Document Automation Solutions ......Developers ایجاد Document Viewer در ASP.NET Core MVC برای بیش از 140 فرمت...ایجاد یک نمایشگر سند جهانی در ASP.NET MVC بنویسم. ما قصد داریم یک...

    blog.groupdocs.com/fa/tag/groupdocs.viewer-for-...
  5. Integrate GroupDocs.Viewer for .NET Into Your G...

    We’re pleased to inform GetSimple developers that the .NET version of GroupDocs.Viewer can be seamlessly integrated into their websites thanks to a plugin we released a few weeks ago. With this plugin installed, you can embed and display over 50 types of documents and images on any page within your website. To name a few, supported formats include: PDF and Microsoft Word documents, Excel spreadsheets, PowerPoint presentations, Visio diagrams and CAD drawings....easy to integrate into any ASP.NET app or website and comes with...For more detail on the .NET/ASP.NET version of the viewer, please...

    blog.groupdocs.com/viewer/integrate-groupdocs-v...
  6. ASP.NET Core MVC 中为 140 多种文件格式创建文档查看器

    在线文档查看器在越来越多地使用数字文档后变得流行起来,尤其是在内容管理系统中。这种流行背后的原因是您无需购买或安装专用软件程序即可查看各种文档格式。考虑到文档查看器的重要性,我想写一篇关于如何在 Asp.net MVC 中创建通用文档查看器的文章。 我们将创建一个针对 .NET Core 框架。对于后端的文档呈现,我们将使用 GroupDocs.Viewer for .NET API - 一个强大的文档查看器 API它支持 140 多种文档类型,包括 PDF、Word、Excel、PowerPoint、Visio、CAD、Outlook 和许多其他流行的格式。 为什么选择 .NET Core? .NET Core 是 Microsoft 对 .NET 生态系统的重要补充。它使开发跨平台应用程序成为可能,而无需开发人员进行任何额外的努力。这就是我选择 .NET Core 作为目标框架的原因。 在 Asp.net Core 中创建文档查看器的步骤 1. 打开 Visual Studio 并启动一个新项目。 2. 从项目类型中选择 .NET Core,从模板中选择 Asp.net Core Web Application。 3. 选择 Web Application (Model-View-Controller) 并点击 Ok 按钮。 4. 从 NuGet 安装 GroupDocs.Viewer。 5. 打开 Views/Home/Index.cshtml 文件并将其内容替换为以下内容: @{ ViewData["Title"] = "Home Page"; }