using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Data.SqlClient;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string strSQLconnection = (@"Data Source=.;Initial Catalog=new;Integrated Security=True");
SqlConnection sqlConnection = new SqlConnection(strSQLconnection);
SqlCommand sqlCommand = new SqlCommand("select * from persons", sqlConnection);
sqlConnection.Open();
SqlDataReader reader = sqlCommand.ExecuteReader();
GridView1.DataSource = reader;
GridView1.DataBind();
}
}
2条答案
按热度按时间enxuqcxy1#
因为你不需要使用ASP.net网格控制器或者jq网格,这里有一些jquery网格视图插件的例子。
http://www.aspdotnet-suresh.com/2014/08/7-jquery-grid-plugin-examples-or.htmlhttp://www.jquerybyexample.net/2012/04/jquery-grid-plugins-for-aspnet.html
如果你需要使用Asp.netgridview控制器来实现,很简单。
这是一个基本样本
您的C#代码将绑定gridview
正如你提到的,你需要插入更新删除网格视图的行,你可以参考这些链接
http://www.aspneto.com/gridview-inline-add-insert-edit-update-delete-data-in-asp-net-c-vb.html
http://www.aspsnippets.com/Articles/Simple-Insert-Select-Edit-Update-and-Delete-in-ASPNet-GridView-control.aspx
wj8zmpe12#
我发现jqGrid的最佳替代方案之一是SuperGrid。
https://sudhanshuism.github.io/supergrid-docs/