0

我是使用 Visual Studio 和 ASP.net 开发网站的新手。我有 2 个问题,如果您能帮助我,我将不胜感激。

我的主要问题是。我继承了一个需要扩展的视觉工作室项目。我已经让它在本地主机上运行,​​但它仍然连接到旧数据库。我已经制作了该数据库的副本,并希望在测试时连接到它,而不是使用实时数据库。谁能解释我如何更改数据库连接。

其次,我有编写 PHP 的经验,基本上是编写 HTML 脚本,但这似乎非常不同。谁能给我指出一个相关的教程,让我知道我应该如何在这个平台上开发网站。我一直在探索项目文件并将其与 html 源进行比较,但无法真正建立联系,因此质量良好的 Visual Studio + ASP 教程对我很有帮助。谢谢

4

2 回答 2

1

If you're looking for HTML tutorials. I learned a LONG time ago off of http://www.htmlgoodies.com. That's only going to get you so far. Practice and http://www.asp.net is a great site to learn.

You should look at converting the WebSite Project [WSP] to a Web Application Project [WAP] (Google it) and take full advantage of the file transformation it offers. That way you only muck around in the web.config file once. Even for experienced developers, it is tedious to modify the web.config file for a deployment into 'DEV', 'TEST', and then 'PROD'. I'd rather press the 'publish' button and it do the work for me.

于 2012-05-01T14:53:35.147 回答
1

对于数据库连接,请在 web.config 文件中名为 connectionstrings 的部分中更改此项。例如:

<connectionStrings>
    <add name="test.DbConnection" providerName="System.Data.SqlClient" connectionString="server=local;database=mydatabase;Integrated Security=FALSE;user=sa;pwd=1234;" />
  </connectionStrings>
于 2012-05-01T13:37:07.773 回答