CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Sep 2005
    Posts
    15

    connection between asp and access

    Whoever it is - Hai!
    I want to know how to connect asp program with the access which scripting language would be more useful and what is way to connect it. It would be better if you could send me the code for that.
    Thanks in advance.

  2. #2
    Join Date
    Feb 2005
    Posts
    176

    Re: connection between asp and access

    You can connect to an Access database by using an
    OledbConnection with the following as a connection string

    Provider=Microsoft.Jet.OLEDB.4.0;
    Data Source=C:\.....\myDatabase.mdb

    ....and u also could try looking here:
    http://www.aspnetpro.com/newslettera...200304FW_l.asp

    Hope it helps!

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

Featured