Spread基础教程:怎样在服务器上部署 Spread for ASP.NET

阅读更多

下面内容阐述怎样部署 Spread for ASP.NET 程序到服务器上。

操作系统

Microsoft Internet Information Server

部署文件

把 Spread for Web Forms 相关的程序集部署在服务器全局程序区缓存 或 wwwroot目录下的 Web 应用程序的 bin 文件夹下。

在服务器上部署下列程序集:

  • FarPoint.Web.Spread.dll 
  • FarPoint.CalcEngine.dll 
  • FarPoint.Excel.dll 
  • FarPoint.PDF.dll 
  • FarPoint.Web.Chart.dll (如果用到图表控件) 
  • FarPoint.Web.Spread.Extender.dll (如果用到扩展单元格类型) 
  • System.Web.Extensions.dll (如果你使用了 FarPoint.Web.Spread.Extender.dll) 
  • AjaxControlToolkit.dll (如果你使用了 FarPoint.Web.Spread.Extender.dll) 

把 fp_client 文件夹(默认安装在 \Program Files\Common Files\FarPoint Technologies 文件夹下)和它的子文件夹部署在服务器的 wwwroot 目录下,如果你想把它放在其他文件夹下,可以在 IIS 中建立对应该文件夹的虚拟路径。

fp_client 文件夹也可以放在 web 程序目录下,但需要在 web_config 文件中,添加如下代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  
  
  
< configuration >
  
  
  
< system.web >
  
  
  
     ...
  
  
  
system.web >
  
  
  
< appsettings >
  
  
  
< add key = "fp_client" value = "fp_client" >
  
  
  
add > appsettings >
  
  
  
configuration >
  
复制代码

请注意 Spread for ASP.NET 在客户端 HTML 页面上创建 Spread 控件的同时也加载 HTC 文件去支持 Spread 在客户端的脚本功能。

权限需求

如果在“中”信任等级的的网站上部署 Spread 控件,你需要在机器的 config  和 web_mediumtrust.config 文件中添加 SerializationFormatter 和 Reflection 许可。

SecurityPermission 需要添加如下代码:

1
2
3
4
5
6
7
< ipermission class = "SecurityPermission" version = "1" flags = "Assertion, Execution, ControlThread, ControlPrincipal, RemotingConfiguration, UnmanagedCode, SerializationFormatter" >
  
  
  
< ipermission class = "ReflectionPermission" version = "1" unrestricted = "true" flags = "ReflectionPermissionFlag.MemberAccess" >
  
复制代码 ipermission > ipermission >

 

你可能感兴趣的:(spread)