我创建了一个数据列表
GridLines="Both" RepeatDirection="Horizontal" BorderColor="Black"
BorderStyle="None" CellPadding="5" CellSpacing="1" RepeatColumns="6">
我还创建了数据库,其中它们是带有 productid 的列,这是我的表的主键,因此在此我将它们插入数据列表中的项目插入到水平列中,(增加 productid 的值)并作为其限制超过 6 个新行被创建。但我每次只想要 12 个项目,即只有 2 行。
我在页面的页脚模板中添加了两个链接按钮。我希望当我单击下一个按钮时,项目显示从产品 id = 13 到 24 的计数,依此类推,直到 count(n)。
我已经用 SqlDataSource1 配置了我的数据列表,并且想使用这样的查询语句
SelectCommand="SELECT * FROM Products where ProductId>=n and ProductId<=m order by [Sports Name]"
我在页面加载时声明了 m=1 和 n=12 但是当我运行我的页面时出现以下错误
Invalid column name 'n'.
Invalid column name 'm'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.SqlClient.SqlException: Invalid column name 'n'.
Invalid column name 'm'.
现在请帮助我在我的项目中进行这种类型的编码。