----------------------------------------------------------- New Message on BDOTNET
----------------------------------------------------------- From: Sovon Message 3 in Discussion Hi Anil, Thanks for replying. But I have installd .NET framework 1.1 in a new machine as a part of VS.NET 2003 installation and then tried to run a piece of code that was running on a different machine having VS.NET 2002 and framework 1.0 So what else could be the problem? Or if someone can confirm the same code is working in their machines with framework 1.1. put the bellow code in your config file for the assembly <?xml version="1.0" encoding="utf-8" ?> <configuration> <!-- The following code uses the predefined appSettings section. --> <appSettings> <add key="connectionString" value="Persist Security Info=False;User ID=sa;Initial Catalog=RMS_DB;Data Source=(local)" /> </appSettings> </configuration> name the config file as assenblyName.dll.config . and try to access this through the following code in a constructor for you assembly. connectionString = ConfigurationSettings.AppSettings["connectionString"].ToString(); Thanks, Sovon. ----------------------------------------------------------- To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. http://groups.msn.com/BDotNet/_emailsettings.msnw Need help? If you've forgotten your password, please go to Passport Member Services. http://groups.msn.com/_passportredir.msnw?ppmprop=help For other questions or feedback, go to our Contact Us page. http://groups.msn.com/contact If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. mailto:[EMAIL PROTECTED]
