Results 1 to 6 of 6

Thread: asp.net dsn connections

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Nov 2000
    Location
    UK
    Posts
    164

    asp.net dsn connections

    Hi can someone give me an example of how to connect to an Access 2000 database using asp.net with a dsn.

    Thanks

    Alex
    ASP, SQL, VB6, Java Script and dubious guitar playing skills.

  2. #2
    Frenzied Member Shawn N's Avatar
    Join Date
    Dec 2001
    Location
    Houston
    Posts
    1,631
    Put this at the top of your Web.Config file inside the "Configurations" node.

    <!-- SETTINGS
    Section containts global constants for application.
    -->
    <appSettings>
    <add key="DSN" value="Initial Catalog=DBName;Data Source=localhost;Integrated Security=SSPI;uid=IUSR_GUEST" />
    </appSettings>

    Then this bit of coding

    Dim dsn As String = ConfigurationSettings.AppSettings("dsn")

    will return the value in Web.Config.
    Please rate my post.

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Nov 2000
    Location
    UK
    Posts
    164
    So you cant just put dsn=myDsn in the connection string like good old asp?

    Alex
    ASP, SQL, VB6, Java Script and dubious guitar playing skills.

  4. #4
    Banished Cander's Avatar
    Join Date
    Dec 2000
    Location
    Why do you care?
    Posts
    6,913
    you can still do that also. I think that using it the way shown is better becuase if you need to make changes it is always better to do so in one place in case you need to use it in multiple pages.
    Stack Overflow
    See the features of Visual Studio 2010 and C# 4.0: The 10-4 show on Channel9

  5. #5

    Thread Starter
    Addicted Member
    Join Date
    Nov 2000
    Location
    UK
    Posts
    164
    Thanks Cander can you post an exampe of using both ways? I get some weird message about could not find provider if I try to do it the way I would in old asp.

    Thanks,

    Alex
    ASP, SQL, VB6, Java Script and dubious guitar playing skills.

  6. #6
    Frenzied Member Shawn N's Avatar
    Join Date
    Dec 2001
    Location
    Houston
    Posts
    1,631
    Please rate my post.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width