山塞一个PetShop 4.0(01)——最简单的数据库连接

PetShop 4.0下载

1、“文件”→“新建项目”,打开“新建项目”对话框。

        点开“其它项目类型”,选择“Visual Studio解决方案”→“空白解决方案”,“名称”输入“NetShop“,“位置”输入D:\NetShop\Task01,单击“确定”。

2、右击“解决方案NetShop”→“添加”→“新建网站”,打开“新建网站”对话框。

        “语言”选择“Visual C#”,“位置”输入“D:\NetShop\Task01\NetShop\Web” ,单击“确定”

3、在窗体文件Default.aspx的“源”视图中,添加如下代码:

<body>

    <form id="form1" runat="server">

        <asp:Repeater ID="repCategories" runat="server">

            <HeaderTemplate>

                <table cellspacing="0" border="0" style="border-collapse: collapse;">

            </HeaderTemplate>

            <ItemTemplate>

                <tr>

                    <td>

                        <asp:HyperLink runat="server" ID="lnkCategory"><%# DataBinder.Eval(Container.DataItem,"Name") %></asp:HyperLink>

                    </td>

                </tr>

            </ItemTemplate>

            <FooterTemplate>

                </table>

            </FooterTemplate>

        </asp:Repeater>

    </form>

</body>


 

4、在代码文件Default.aspx.cs中,添加如下代码:

    protected void Page_Load(object sender, EventArgs e)

    {

        string connectionString = ConfigurationManager.ConnectionStrings["SQLConnString"].ConnectionString;

        SqlConnection conn = new SqlConnection(connectionString);

        conn.Open();



        string cmdString = "SELECT Name FROM Category";

        SqlCommand cmd = new SqlCommand(cmdString, conn);

        SqlDataReader rdr = cmd.ExecuteReader();



        repCategories.DataSource = rdr;

        repCategories.DataBind();



        conn.Close();



    }


5、别忘了添加这句哈:using System.Data.SqlClient;

6、添加配置文件Web.config,并添加连接字符串:

    <connectionStrings>
      <add name="SQLConnString" connectionString="server=(local)\SQLEXPRESS;User Id=sa;password=123;database=MSPetShop4"/>
    </connectionStrings>

7、右击Default.aspx→”在浏览器中查看”,你看到了什么????

你可能感兴趣的:(数据库连接)