1。运行C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regsql.exe
在这里进行一系列设置之后,你就会发现在数据库中多了一个aspnetdb(自定义)。
2。在C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG\web.config中的<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">下添加
<connectionStrings>
        <remove name="LocalSqlServer" />
        <add name="LocalSqlServer" connectionString="Data Source=localhost;Initial Catalog=aspnetdb;Persist Security Info=True;User ID=sa;Password=sa"
            providerName="System.Data.SqlClient" />
    </connectionStrings>
就可以创建WEBPARTS了