0

我试图ID从 HTTP 标头绑定到我的选择查询中的参数。它不返回任何记录,就像绑定了 null 一样。可能是什么问题。

<asp:SqlDataSource ID="sdsCities" runat="server" ConnectionString="<%$ ConnectionStrings:MyConn %>"
SelectCommand="SELECT * FROM [cities] WHERE ([cityid] = @cityid) ORDER BY DateCreated Desc">
<SelectParameters>
<asp:QueryStringParameter Name="cityid" QueryStringField="ID" Type="Int32"  DefaultValue="7856"/>
</SelectParameters>
</asp:SqlDataSource>

在地址栏中,我有这个字符串

?mode=full&ID=123

即使是默认值也不起作用。帮助将不胜感激。

4

0 回答 0