.aspx 页面中的 SqlDataSource 连接字符串

发布于 2024-08-04 13:21:10 字数 545 浏览 7 评论 0原文

我有一个将 ASP.NET 页面部署到 SharePoint 的解决方案,该解决方案在一些页面上使用 SqlDataSources。由于在 SharePoint 部署中,与我们的应用程序(部署到 GAC)关联的 web.config 文件是 SharePoint 服务器的 web.config,因此我们没有对所有环境的完全访问权限来更改 web.config 文件并添加连接字符串。然后,我尝试创建一个带有连接字符串变量的全局密封类,并希望在 aspx 页面上设置连接字符串。我知道这可以在后面的代码中完成,但想知道是否有办法在 aspx 页面的标记中设置它?

前任。

ConnectionString='<% CompanyABCGlobal.DBConnectionString %>'

尝试执行上述操作时出现以下错误: 初始化字符串的格式不符合从索引 0 开始的规范。

要在代码隐藏中执行此操作,我需要为每个 SqlDataSource 声明一个受保护的属性,然后为每个 SqlDataSource 设置连接字符串属性。

感谢您的任何反馈。

I have a solution for ASP.NET pages to be deployed to SharePoint that uses SqlDataSources on a few of the pages. Since with the SharePoint deployment the web.config file that is associated with our application (deployed to GAC) is the web.config for the SharePoint server, we do not have full access for all environments to change the web.config file and add connection strings. I then tried to create a global sealed class with a connection string variable and would like to set the connection string on the aspx page. I understand this could be done in code behind, but was wondering if there was a way to set it in the markup of the aspx page?

ex.

ConnectionString='<% CompanyABCGlobal.DBConnectionString %>'

I get the following error when attempting to do the above:
Format of the initialization string does not conform to specification starting at index 0.

To do this in code behind, I would need to declare a protected property for every SqlDataSource and then would set the connection string property for each one.

Thanks for any feedback.

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

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

发布评论

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

评论(1

微凉徒眸意 2024-08-11 13:21:10

为了访问类属性,您必须在表达式的开头使用 = 或 # 声明,即

ConnectionString = '<%# CompanyABCGlobal.DBConnectionString %>'

如果您的类可从该页面获得,您可以通过在表单标记后打开 <% 表达式来测试它。

有关表达式 msdn 的详细信息

In order to access class properties you must use = or # declaration in the starting of expressions,i.e

ConnectionString = '<%# CompanyABCGlobal.DBConnectionString %>'

You can test it by opening <% expression after form tag if your class is available from that page.

For more information about expression msdn

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文