简体   繁体   中英

Web Deployment Task Failed: Unicode keyword not suported

I'm now trying to build deployment package for my Visual Studio 2010 ASP.NET Project. But, I'm getting an error that I cannot resolve:

Error   1   Web deployment task failed.(Object of type 'dbFullSql' and path 'Data Source=localhost;Persist Security Info=True;User ID=aba1437;Password=aba1437eg;Unicode=True' cannot be created.)

Object of type 'dbFullSql' and path 'Data Source=localhost;Persist Security Info=True;User ID=aba1437;Password=aba1437eg;Unicode=True' cannot be created.
The value 'Data Source=localhost;Persist Security Info=True;User ID=aba1437;Password=aba1437eg;Unicode=True' is not a valid connection string or an absolute path.
Keyword not supported: 'unicode'.       0   0   Titanic

The connection string looks in the following way:

Data Source=localhost;Persist Security Info=True;User ID=aba1437;Password=***********;Unicode=True

I would really appreciate any suggestions because I did not found any useful tips to resolve the problem. Thank you!

I believe you are missing the ending semicolon.

Data Source=localhost;Persist Security Info=True;
User ID=aba1437;Password=***********;Unicode=True;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM