让 Gridview 从 Session 读取 ConnectionString?

发布于 2024-12-05 22:49:26 字数 431 浏览 1 评论 0原文

如何让我的SQLDataSource从会话变量中读取ConnectionString

我知道我可以用代码做到这一点,如下所示:

protected void Page_Load(object sender, EventArgs e)
{
    uxDS.ConnectionString = Session["con"].ToString();
}

但是我真的想要这样的东西吗?

<asp:SqlDataSource ID="uxDS" ... ConnectionString='<% Session["con"] %>' />

我可以发誓我在某个地方看到过它,但我似乎找不到它。

How can get my SQLDataSource to read the ConnectionString from a session variable?

I know I can do it in code, like this:

protected void Page_Load(object sender, EventArgs e)
{
    uxDS.ConnectionString = Session["con"].ToString();
}

But what I really want is something like this?

<asp:SqlDataSource ID="uxDS" ... ConnectionString='<% Session["con"] %>' />

I could have sworn I saw it done somewhere but I can't seem to find it.

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

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

发布评论

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

评论(1

池木 2024-12-12 22:49:26

你试过这个吗?

<asp:SqlDataSource ID="uxDS" ... ConnectionString='<%# Session["con"] %>' />

Have you tried this?

<asp:SqlDataSource ID="uxDS" ... ConnectionString='<%# Session["con"] %>' />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文