private void GetTABLE()
{
conn.Open();
cmd = new SqlCommand("`GetAllTablesProduct`", conn);
cmd.CommandType = CommandType.StoredProcedure;
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
da.Fill(dt);
ListView1.DataSource = dt;
ListView1.DataBind();
conn.Close();
}
这是存储过程:
CREATE procedure [dbo].[GetAllTablesProduct]
AS
BEGIN
SELECT *
FROM Product
ORDER BY ID DESC
END
答案 0 :(得分:0)
看起来您正在页面中使用脚本管理器,并在aspx页面中编写服务器端代码,例如<%= servercode%> 或<%response.write(content) %GT; 强>
如果找到,请删除此类代码。