I am working on a project using ASP.NET and Sharepoint services
I hv developed web parts using user controls of vb.net. Basically a few
forms saving and querying sqlserver 2000 db. I need the below 2 tags to be
added into sharepoint web.config file.
---------------------------------------------------------------------
<appSettings>
<add key="ConnectionString" value="server= svr; User ID = nanda; Password =
Nanda; database=rsdb" />
</appSettings>
---------------------------------------------------------------------
AND
---------------------------------------------------------------------
<identity impersonate="true" />
---------------------------------------------------------------------
How ever the web parts runs fine when i add the connection string in the
code behind of the usercontrol page itself. But i need to centralize the
connection string to sqlserver as i need to use the same in many web parts
Pls let me know where to add the above 2 tags. ie...in which web.config file?
Any help will be appreciated.