Re: Database Connection - Development to Production
- From: "Matt" <mamarsha@xxxxxxxxxxxxxxxxx>
- Date: Thu, 18 May 2006 08:55:08 -0400
Thank you very much.
The config files are the way to go for all of my ASP.NET applications. I
agree with that. Unfortunately, all of our applications are still classic
ASP and I will require the connection information to be contained within the
dll at this time. I understand that it will be hard coded. Is using ini
files a method of the past? We have other VB 6 programmers here and they use
ini files to store their connection information.
The dll is a Security Control object that I created. It consists of a few
classes that read data from a database to populate the object properties and
collections.
Soon I will be making a post dedicated to converting classic ASP
applications to ASP.NET applications. I have yet to begin to research this
yet so if anyone has any insight or links to articles you could supply me
with it would be much appreciated. I should start a new post for this topic
though.
Thanks again.
"Steven Cheng[MSFT]" <stcheng@xxxxxxxxxxxxxxxxxxxx> wrote in message
news:BhDQv%23jeGHA.3900@xxxxxxxxxxxxxxxxxxxxxxxx
Hi Matt,
Storing connectionString in dll itself is ok. However, it'll make the
connectionstring hard coded and not possible to modify, if you do not care
about this ,then you can just use this approach.
As for .net framework application, we would suggest store connectionString
in application's config file(app.config or web.confing), this can make the
connectionstring's management very convenient and flexible. Also, .net
framework (especially 2.0) has powerful support on config file's
reading/writing....
#Storing and Retrieving Connection Strings
http://msdn2.microsoft.com/en-us/library/ms254494.aspx
Also, if the connectionString will be used in ASP.NET application, we can
perform encryption on them through DPAPI or RSA key:
#How To: Encrypt Configuration Sections in ASP.NET 2.0 Using RSA
http://msdn.microsoft.com/library/en-us/dnpag2/html/paght000006.asp?frame=tr
ue
Regards,
Steven Cheng
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no
rights.
Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
.
- Follow-Ups:
- Re: Database Connection - Development to Production
- From: Steven Cheng[MSFT]
- Re: Database Connection - Development to Production
- References:
- Database Connection - Development to Production
- From: Matt
- Re: Database Connection - Development to Production
- From: smc750 via DotNetMonster.com
- Re: Database Connection - Development to Production
- From: Steven Cheng[MSFT]
- Database Connection - Development to Production
- Prev by Date: Re: TryParse and out parameters
- Next by Date: This profiler and tracer tool…. How good is it?
- Previous by thread: Re: Database Connection - Development to Production
- Next by thread: Re: Database Connection - Development to Production
- Index(es):
Relevant Pages
|