0

I have ASP.NET project and attached mdf database.I want to deploy it to remote server.I have just ftp account.The project works well on my local but ı had problem while deploying.I changed my connection string like. Please help me what is the problem ?

    <add name="libraryConnectionString" 

    connectionString=" Server =.\SQLExpress; 

    AttachDbFilename= myusername@ftp.myserver.com/App_Data/LIBRARY.mdf;

    Integrated Security=SSPI;

    User Instance=True" 

    providerName="System.Data.SqlClient"/>

</connectionStrings>
4

1 回答 1

0

您必须通过控制面板与用户一起创建 Ms-Sql 服务器数据库(远程),或者您可以要求您的托管服务提供商创建数据库和用户。创建数据库后,您可以执行脚本(您可以使用 Visual Studio 数据库发布向导)并为您的 Web 应用程序构建一个新的连接字符串。

查看 MSDN 文章 -使用数据库发布向导部署数据库

Visual Studio 中的数据库发布向导使您能够将 SQL Server 数据库(架构和数据)部署到托管环境。您可以通过右键单击服务器资源管理器中的数据库,然后单击发布到提供者来运行该向导。

于 2011-12-20T12:17:15.150 回答