因此,我尝试按照一些 asp.net 教程来使用 ajax 填充 Gridview。
在 Microsoft 的 msdn 示例中,它具有
DataSet ds = GetData(queryString);
我在这里找到的。
他们包括
<%@ import namespace="System.Data" %>
<%@ import namespace="System.Data.SqlClient" %>
我的 C# 代码隐藏已经有了
using System.Data;
using System.Data.SqlClient;
using System.Data.Sql;
在此示例中,他也使用了 GetData()。 http://www.aspsnippets.com/Articles/GridView---Add-Edit-Update-Delete-and-Paging-the-AJAX-way.aspx
GridView1.DataSource = GetData(cmd);
GridView1.DataBind();
但无论如何我得到了错误
GetData() does not exist in the current context
当我在我的 C# 代码隐藏中尝试它时
SqlCommand sql = new SqlCommand(command);
AddressContactSource.SelectCommandType = SqlDataSourceCommandType.Text;
AddressContactSource.SelectCommand = command;
DataSet ds= new DataSet;
ds= GetData(sql);
那么我错过了什么?