我正在开发一个 web 应用程序,我需要在页面滚动时显示来自 MySQL 的数据。在我的代码隐藏中,我有一个连接到 MySQL_DB 的 [WebMethod] GetData()。但是我只能在表格中显示第一列,下面是代码。我想显示一个完整的表格或特定的列。我怎样才能做到这一点?
代码隐藏
[WebMethod]
public static string GetDataFromServer()
{
DataSet ds = new DataSet();
string connString = "conString";
MySqlConnection mycon = new MySqlConnection(connString);
MySqlCommand cmd = new MySqlCommand("select * from rest", mycon);
MySqlDataAdapter adp = new MySqlDataAdapter(cmd);
int retVal = adp.Fill(ds);
string resp = string.Empty;
for (int i = 1; i <= ds.Tables[0].Rows.Count; i++)
{
string strComment = string.Empty;
if (ds.Tables != null)
{
if (ds.Tables[0] != null)
{
if (ds.Tables[0].Rows.Count > 0)
{
if (ds.Tables[0].Rows.Count >= i - 1)
{
if (ds.Tables[0].Rows[i - 1][0] != DBNull.Value)
{
//GridView1.DataSource();
strComment = ds.Tables[0].Rows[i - 1][0].ToString();
}
}
}
}
}
resp += "<p><span>" + "</span> " + strComment + "</p>";
}
return resp;
}
ASPX
<div id="wra" style="height:300px;overflow:auto">
<asp:GridView ID="GridView1" runat="server" ></asp:GridView>
</div>