1.在没有安装有mvc3的主机上部署asp.net mvc3网站,需要包含的DLL文件。

microsoft.web.infrastructure.dll
system.web.helpers.dll
system.web.mvc.dll
system.web.razor.dll
system.web.webpages.deployment.dll
system.web.webpages.dll
system.web.webpages.razor.dll

 

2.Sqlite除了需要包含System.Data.SQLite.Dll外,再在web.config中加上:

<system.data>
<DbProviderFactories>
<remove invariant="System.Data.SQLite"/>
<add name="SQLite Data Provider" invariant="System.Data.SQLite"
description
=".Net Framework Data Provider for SQLite"
type
="System.Data.SQLite.SQLiteFactory, System.Data.SQLite"/>
</DbProviderFactories>
</system.data>

相关文章:

  • 2022-02-19
  • 2022-12-23
  • 2021-06-14
  • 2021-10-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-01
  • 2022-01-09
  • 2021-06-07
  • 2022-12-23
  • 2021-11-04
  • 2021-10-10
相关资源
相似解决方案