从标记中的代码隐藏引用 int (.Net)

发布于 2024-10-25 12:44:41 字数 323 浏览 6 评论 0原文

我有一个在代码隐藏中带有 int 的 aspx 页面:

private const int id = 11;

在标记中,我

<asp:SqlDataSource ID="SqlDataSource" runat="server" 
 SelectCommand="SELECT Name FROM [StatusOption] WHERE StatusId = 11">

想在标记中引用代码隐藏中的 id,这样我只需在必要时在代码隐藏中更改它。是否可能以及如何实现。

I have an aspx-Page with an int in Codebehind:

private const int id = 11;

And in Markup I have

<asp:SqlDataSource ID="SqlDataSource" runat="server" 
 SelectCommand="SELECT Name FROM [StatusOption] WHERE StatusId = 11">

I would like to reference the id from codebehind in the markup, so that I only have to change it in codebehind when necessary. Is it possible and how.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请恋爱 2024-11-01 12:44:42

您只需在 中设置所需的值即可SqlDataSource.Selecting 事件。

我向您的数据源添加了一个新的选择参数 - statusId 并在 SqlDataSource_Selecting 事件处理程序中为其设置一个值:

<asp:SqlDataSource ID="SqlDataSource" runat="server" 
    SelectCommand="SELECT Name FROM [StatusOption] WHERE StatusId = @statusId"
    OnSelecting="SqlDataSource_Selecting">
    <SelectParameters>
        <asp:Parameter Name="statusId" Type="Int32" />
    </SelectParameters>

然后在代码隐藏中:

protected void SqlDataSource_Selecting(
    object sender, 
    SqlDataSourceSelectingEventArgs e)
{
    e.Command.Parameters["@statusId"].Value = id;
}

You could just set the desired value in the SqlDataSource.Selecting event.

I added a new select parameter to your data source - statusId and set a value to it in the SqlDataSource_Selecting event handler:

<asp:SqlDataSource ID="SqlDataSource" runat="server" 
    SelectCommand="SELECT Name FROM [StatusOption] WHERE StatusId = @statusId"
    OnSelecting="SqlDataSource_Selecting">
    <SelectParameters>
        <asp:Parameter Name="statusId" Type="Int32" />
    </SelectParameters>

and then in code-behind:

protected void SqlDataSource_Selecting(
    object sender, 
    SqlDataSourceSelectingEventArgs e)
{
    e.Command.Parameters["@statusId"].Value = id;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文