日期:2014-05-17 浏览次数:21285 次
//AllowSorting="True" OnSorting="gvStore_Sorting"
protected void gvStore_Sorting(object sender, GridViewSortEventArgs e)
{
//双向排序
if (ViewState["sort"] == null)
{
ViewState["sort"] = "ASC";//默认升序
}
else
{
if (ViewState["sort"].ToString() == "ASC")
{
ViewState["sort"] = "DESC";
}
else
{
ViewState["sort"] = "ASC";
}
}
//重新绑定数据
SqlConnection conn = new SqlConnection(DbConn.connStr);
SqlDataAdapter sda = new SqlDataAdapter("select * from store", conn);