วิธีอัปเดต Doconut

ทำตามขั้นตอนเหล่านี้เพื่ออัปเดตจากเวอร์ชัน 1.0.5.2 หรือต่ำกว่า

.NET Framework 4.7

การกำหนดค่า Web.config

ตัวดูต้องการให้ HttpHandler ถูกลงทะเบียนผ่านไฟล์ web.config ขึ้นอยู่กับเวอร์ชัน IIS ของคุณ สามารถทำได้โดยใช้ส่วนต่อไปนี้ที่กำหนดใน web.config.

ต่ำกว่า IIS 7:

xml
<httpHandlers>
  <add verb="GET,POST" path="DocImage.axd" type="Doconut.DocImageHandler, Doconut" />
</httpHandlers>

IIS 7 ขึ้นไป:

xml
<handlers>
  <add name="DocImage" verb="GET,POST" path="DocImage.axd" type="Doconut.DocImageHandler, Doconut" />
</handlers>

อัปเดตการลงทะเบียนในหน้า ASPX

เปลี่ยนการลงทะเบียนแอสเซมบลีในหน้า ASPX ของคุณ.

เก่า:

aspx
<%@ Register Assembly="DocumentViewer" Namespace="DotnetDaddy.DocumentViewer" TagPrefix="asp" %>

ใหม่:

aspx
<%@ Register Assembly="Doconut" Namespace="Doconut" TagPrefix="asp" %>

อัปเดตแท็กควบคุม

อัปเดตแท็กควบคุมจาก DocViewer เป็น Viewer.

เก่า:

aspx
<asp:DocViewer ID="ctlDoc" runat="server"/>

ใหม่:

aspx
<asp:Viewer ID="ctlDoc" runat="server"/>

อัปเดต Namespaces

Doconut 24.3.0 ได้เปลี่ยนชื่อ namespaces เพิ่ม DLL ใหม่: Doconut.dll, Doconut.Formats.dll, Doconut.Configs.dll, และ Doconut.Clouds.dll.

การใช้ใหม่:

csharp
using Doconut;
using Doconut.Configs;
using Doconut.Formats;
using Doconut.Clouds;

การเริ่มต้น:

csharp
var viewer = new Viewer();

การพึ่งพาแพ็กเกจ

  • Newtonsoft.Json 13.0.3
  • System.Text.Encoding.CodePages 6.0.0
  • System.Text.Json 6.0.0

.NET Standard / Core

อัปเดต Namespaces

Doconut 24.3.0 ได้เปลี่ยนชื่อ namespaces เพิ่ม DLL ใหม่: Doconut.dll, Doconut.Formats.dll, Doconut.Configs.dll, และ Doconut.Clouds.dll.

การใช้ใหม่:

csharp
using Doconut;
using Doconut.Configs;
using Doconut.Formats;
using Doconut.Clouds;

การเริ่มต้น:

csharp
var viewer = new Viewer();

การพึ่งพาแพ็กเกจ

  • Microsoft.Extensions.Caching.Abstractions 3.1.10
  • SkiaSharp 2.88.6
  • Newtonsoft.Json 13.0.3
  • System.Drawing.Common 6.0.0
  • System.Text.Json 6.0.0
  • System.Text.Encoding.CodePages 7.0.0

.NET 6 หรือสูงกว่า

อัปเดต Namespaces

Doconut 24.3.0 ได้เปลี่ยนชื่อ namespaces เพิ่ม DLL ใหม่: Doconut.dll, Doconut.Formats.dll, Doconut.Configs.dll, และ Doconut.Clouds.dll.

การใช้ใหม่:

csharp
using Doconut;
using Doconut.Configs;
using Doconut.Formats;
using Doconut.Clouds;

การเริ่มต้น:

csharp
var viewer = new Viewer();

การพึ่งพาแพ็กเกจ

  • Microsoft.Extensions.Caching.Abstractions 3.1.10
  • Newtonsoft.Json 13.0.3
  • SkiaSharp 2.88.6
  • System.Drawing.Common 7.0.0
  • System.Text.Encoding.CodePages 7.0.0

หน้านี้เป็นประโยชน์หรือไม่?