I want to create a web site that uses ASP.NET and connects to FoxPro tables on a server in a different location.
How do I create the connection string (in .NET) so that I make the connection?
This would make a local connection:
"Provider=vfpoledb.1;Data Source=C:\MyDataDirectory\;Collating Sequence=general"
but I need to reference tables on a different server.
Do I use something like:
Data Source=198.451.1.04
or
Server=vfp.myserver.com
I'm supposing that the server hosting the FoxPro tables would have to have a static IP.
How do I create the connection string (in .NET) so that I make the connection?
This would make a local connection:
"Provider=vfpoledb.1;Data Source=C:\MyDataDirectory\;Collating Sequence=general"
but I need to reference tables on a different server.
Do I use something like:
Data Source=198.451.1.04
or
Server=vfp.myserver.com
I'm supposing that the server hosting the FoxPro tables would have to have a static IP.