求教高手!asp.net连接到 SQL Server 数据库时出现异常。
发布网友
发布时间:2022-04-07 16:50
我来回答
共6个回答
热心网友
时间:2022-04-07 18:19
解决方法:开始->所有程序->Ms Sql Server->配置工具->sql server外围应用配置器->服务和连接的外围应用配置器->打开MSSQLSERVER节点下的Database Engine 节点,先择"远程连接",接下建议选择"同时使用TCP/IP和named pipes",确定后,重启数据库服务就可以了.
如果还出现错误的话 那么请你检查一下所写的代码connectionString中的Data Source这个属性填写的值是否正确 本机默认填写.\SQLEXPRESS 或者换成 计算机名\SQLEXPRESS ...
热心网友
时间:2022-04-07 19:37
如果连接程序没有错误,请检查SQL服务器的远程连接设置,因为在默认的设置下 SQL Server 不允许进行远程连接。
示例:
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:YS120ConnectionString %>" SelectCommand="读取新闻信息" SelectCommandType="StoredProcere">
<SelectParameters>
<asp:QueryStringParameter DefaultValue="-1" Name="ID" QueryStringField="ID" Type="String" />
</SelectParameters>
</asp:SqlDataSource>
<asp:FormView ID="FormView1" runat="server" DataKeyNames="NewsID" DataSourceID="SqlDataSource1" Width="100%">
<ItemTemplate>
<div id="ClasscnName" style="text-align:left ;">
<asp:Label ID="classcnLabel" runat="server" Text='<%# Bind("classNcn") %>'></asp:Label><br />
</div>
<div id="artTitle" style="text-align:center; ">
<asp:Label ID="TitleLabel" CssClass="labelTitle" runat="server" Text='<%# Bind("Title") %>'></asp:Label>
</div>
<hr />
<div id="artInfor" style="text-align:center; " class="labelSource">
一生健康网:www.ys120.cn 时间:
<asp:Label ID="DateLabel" runat="server" Text='<%# Bind("Date1") %>'></asp:Label></div>
<p style="text-align:center; " class="labelSource">来源:
<asp:Label ID="SourceLabel" runat="server" Text='<%# Bind("Source") %>'></asp:Label>
<span style="text-align:center; " class="labelSource">
责任编辑:<asp:Label ID="EditerLabel" runat="server" Text='<%# Bind("Editer") %>'></asp:Label>
</p>
<hr />
<div id="content" style="text-align:left ;" class="labelContent">
<asp:Label ID="ContentLabel" runat="server" Text='<%# Bind("Contents") %>'></asp:Label></div>
<br />
</SPAN>
</ItemTemplate>
</asp:FormView>
参考资料:http://zhidao.baidu.com/question/206348506.html
热心网友
时间:2022-04-07 21:12
sql server 里面 的用户里面添加 一个名叫 ’不需验证‘ 的帐号。
热心网友
时间:2022-04-07 23:03
可能是密码没设置好,这个比较常见的
热心网友
时间:2022-04-08 01:11
这个是你的数据库的应用外围配置器没设置好。
热心网友
时间:2022-04-08 03:36
相关服务开启了哇?