我是C#的新手。刚刚为初学者提供Kudvenkat教程。我在这一行收到错误:
SqlDataReader rdr = cmd.ExecuteReader();
与ExecuteReader();
我确信这很简单,但你可以解释一下它为什么会发生吗?
我的aspx.cs文件
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
namespace SqlDataReader
{
public partial class SqlDataReader : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
// creating variable that holds value of connection string
string CS = ConfigurationManager.ConnectionStrings["DBCS"].ConnectionString;
// creating connection object with use of "using" block
using (SqlConnection con = new SqlConnection(CS))
{
con.Open();
SqlCommand cmd = new SqlCommand("select top 5 ProductID, LocationID,Shelf,Quantity from [Production].[ProductInventory]", con);
SqlDataReader rdr = cmd.ExecuteReader(); // --Error
GridView1.DataSource = rdr;
GridView1.DataBind();
}
}
}
}
我的aspx文件:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SqlDataReader.aspx.cs" Inherits="SqlDataReader.SqlDataReader" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
<asp:GridView ID="GridView1" runat="server" BackColor="#DEBA84" BorderColor="#DEBA84" BorderStyle="None" BorderWidth="1px" CellPadding="3" CellSpacing="2">
<FooterStyle BackColor="#F7DFB5" ForeColor="#8C4510" />
<HeaderStyle BackColor="#A55129" Font-Bold="True" ForeColor="White" />
<PagerStyle ForeColor="#8C4510" HorizontalAlign="Center" />
<RowStyle BackColor="#FFF7E7" ForeColor="#8C4510" />
<SelectedRowStyle BackColor="#738A9C" Font-Bold="True" ForeColor="White" />
<SortedAscendingCellStyle BackColor="#FFF1D4" />
<SortedAscendingHeaderStyle BackColor="#B95C30" />
<SortedDescendingCellStyle BackColor="#F1E5CE" />
<SortedDescendingHeaderStyle BackColor="#93451F" />
</asp:GridView>
</form>
</body>
</html>
答案 0 :(得分:1)
由于您的类名称和命名空间,编译器假定rdr
的类型为SqlDataReader
,这是您在命名空间SqlDataReader
下的类名。所以这里最好的选择是重命名你的类,替代选项也是完全限定名称。这意味着你必须在实例化类时指定类的名称空间,即,代码将是这样的:
System.Data.SqlClient.SqlDataReader rdr = cmd.ExecuteReader(); // No Error now
另一个选择是使用静态类型定义器,var
使用此类型将自动分配以存储我们分配给它们的值,即:
var rdr = cmd.ExecuteReader(); // No Error now
此处rdr
将是ExecuteReader()
方法正在撤销的类型。