jquery jqgrid的简单替代方案是什么?

vtwuwzda  于 2023-03-22  发布在  jQuery
关注(0)|答案(2)|浏览(187)

我正在学习jquery。我想一步一步地实现所有的东西。我必须给予gridview,它将包含所有的控制更新,删除记录。什么将是简单的方法来实现gridview在。net而不是jqgrid。

enxuqcxy

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控制器来实现,很简单。
这是一个基本样本

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>


        <asp:GridView ID="GridView1" runat="server">

        </asp:GridView>


    </div>
    </form>
</body>
</html>

您的C#代码将绑定gridview

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();

}

}

正如你提到的,你需要插入更新删除网格视图的行,你可以参考这些链接
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

wj8zmpe1

wj8zmpe12#

我发现jqGrid的最佳替代方案之一是SuperGrid
https://sudhanshuism.github.io/supergrid-docs/

相关问题