我在ASP NET 4上使用C-sharp。
我需要在GridView
的列中添加排序功能。我已将AllowSorting
上的GridView
- 属性设置为true
,并在列中添加了排序表达式。
不幸的是,排序不适用于GridView
。
下面是我应该能够排序的列的代码隐藏文件,但是我收到了错误
CS1502:最佳重载方法匹配System.eData.DataView.DataView(System.Data.DataTable)'有一些无效的论点
在这一行:
DataView sortedView = new DataView(BindData());
代码背后:
string sortingDirection;
public SortDirection dir
{
get
{
if (ViewState["dirState"] == null)
{
ViewState["dirState"] = SortDirection.Ascending;
}
return (SortDirection)ViewState["dirState"];
}
set
{
ViewState["dirState"] = value;
}
}
public string SortField
{
get
{
return (string)ViewState["SortField"] ?? "Name";
}
set
{
ViewState["SortField"] = value;
}
}
protected void gvProducts_Sorting(object sender, GridViewSortEventArgs e)
{
sortingDirection = string.Empty;
if (dir == SortDirection.Ascending)
{
dir = SortDirection.Descending;
sortingDirection = "Desc";
}
else
{
dir = SortDirection.Ascending;
sortingDirection = "Asc";
}
DataView sortedView = new DataView(RetrieveProducts());
sortedView.Sort = e.SortExpression + " " + sortingDirection;
SortField = e.SortExpression;
gvProducts.DataSource = sortedView;
gvProducts.DataBind();
}
protected void gvProducts_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
if (dir == SortDirection.Ascending)
{
sortingDirection = "Asc";
}
else
{
sortingDirection = "Desc";
}
DataView sortedView = new DataView(RetrieveProducts());
sortedView.Sort = SortField + " " + sortingDirection;
gvProducts.DataSource = sortedView;
gvProducts.PageIndex = e.NewPageIndex;
gvProducts.DataBind();
}
private void BindData()
{
gvProducts.DataSource = RetrieveProducts();
gvProducts.DataBind();
}
private DataSet RetrieveProducts()
{
DataSet dsProducts = new DataSet();
string sql = " ... ";
using (OdbcConnection cn =
new OdbcConnection(ConfigurationManager.ConnectionStrings["ConnMySQL"].ConnectionString))
{
cn.Open();
using (OdbcCommand cmd = new OdbcCommand(sql, cn))
{
........
}
}
return dsProducts;
}
编辑#1
DataView sortedView = new DataView(dsProducts.Tables[0]);
编辑#2
我在aspx页面中添加了:
<asp:BoundField DataField="Name" HeaderText="Name" SortExpression="Name" />
但如果点击列名,我会遇到这个新错误:
System.IndexOutOfRangeException: Cannot find table 0.
在这一行:
Line 100: DataView sortedView = new DataView(dsProducts.Tables[0]);
答案 0 :(得分:3)
DataView类只有三个构造函数,其中一个是默认构造函数DataView(),第二个是DataTable作为参数DataView(DataTable),另一个接受四个参数DataView(DataTable,String,String,DataViewRowState)
DataView构造函数需要这些类型中的任何一个的参数,但是您的代码具有其他类型的参数。那是错误。
你的BindData方法应该返回一个DataTable对象,
//This function should return a Datatable
private void BindData()
{
gvProducts.DataSource = RetrieveProducts();
gvProducts.DataBind();
}
您可以在此处传递到DataView。
DataView sortedView = new DataView(BindData());
第二次修改,
System.IndexOutOfRangeException: Cannot find table 0.
在这一行:
Line 100: DataView sortedView = new DataView(dsProducts.Tables[0]);
我猜数据集是空的,错误清楚地表明数据集中位置0没有任何表。所以检查数据集是否有表。可能是你的sql请求没有得到任何表来填充数据集。 否则,您可能已经创建了数据集的新实例。