Hello
I am getting the following error Compiler Error Message: CS1518: Expected class, delegate, enum, interface, or struct
with 'string' on this line:
public static string GetConnString()
and with "MyConnectionString" on this line:
return WebConfigurationManager.ConnectionStrings["MyConnectionString"].ConnectionString;
I have looked around the Web and I have seen examples of
public static String GetConnString()
with a capital 'S' and even
public virtual String GetConnString()
but neither seem to be working for me.
Any help would be appreciated.