开发者

asp.net website deploymnet on client

开发者 https://www.devze.com 2023-02-18 12:12 出处:网络
I have completed building a website for a client.Now i want to deploy this website on the server, So that client ca开发者_运维百科n access the website like a normal website. what is the best way to do

I have completed building a website for a client.Now i want to deploy this website on the server, So that client ca开发者_运维百科n access the website like a normal website. what is the best way to do it. I am using C#,asp.net 3.5, Ms Access.

Thanks


Do you want to protect the source code as well?

YES

  • Install the Web Deployment Project for Visual Studio (there is on for VS2008 and other for VS2010)
  • Add that project to your solution
  • Add a Web Setup project to your solution
  • Tell the Web Setup project that to load the Deploy project as source
  • Build the Solution
  • You will have in the Web Setup folder a setup.exe and Website.msi ready to be installed in any client machine (client needs to have IIS)

NO

  • Add a Web Setup project to your solution
  • Tell the Web Setup project that to load the Web Site project as source
  • Build the Solution
  • You will have in the Web Setup folder a setup.exe and Website.msi ready to be installed in any client machine (client needs to have IIS)

asp.net website deploymnet on client


All 3 projects, Web Site + Deploy project + Setup Project

asp.net website deploymnet on client

0

精彩评论

暂无评论...
验证码 换一张
取 消