L
Lloyd Sheen
I am trying to extract string from web.config.
Example in MSDN has the following line:
Me.SqlConnection1.ConnectionString =
CType(System.Configuration.ConfigurationSettings.AppSettings.GetValues("SqlC
onnection1.ConnectionString")
No way this will compile. ASP really does not like this.
Complains about a Value of type '1-dimensional array of String' cannot be
converted to 'String'.
Any ideas. The more I use this the more I see that MS just did what the
absolute minimum is. No QA on docs and the docs get skimmpier each new
development tool.
LLoyd Sheen
Example in MSDN has the following line:
Me.SqlConnection1.ConnectionString =
CType(System.Configuration.ConfigurationSettings.AppSettings.GetValues("SqlC
onnection1.ConnectionString")
No way this will compile. ASP really does not like this.
Complains about a Value of type '1-dimensional array of String' cannot be
converted to 'String'.
Any ideas. The more I use this the more I see that MS just did what the
absolute minimum is. No QA on docs and the docs get skimmpier each new
development tool.
LLoyd Sheen