Tracing connectionstring
Hello,
I have a login aspx page which can't connect to sqlserver and I'd like to know how could I see the value of "ConnectionString", to verify it.
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:SqlServerConnectionString %>"
...
(commands)
...
</asp:SqlDataSource>
Can I put some code to see this value? (this page hasn't any code asociated: ej. page.c)
Thanks in advance
|