Maybe I didn't explain my initial problem well enough... but, the problem with doing that is I am not the person who is using the software, thousands of standard joes will be using the software and won't be able to do that. All they will be able to do is upload a few asp files along with a...
The database connects using DSNless as follows.
DB_location=server.mappath("mydb.mdb")
Set db = Server.CreateObject("ADODB.Connection")
db.Open "PROVIDER=MICROSOFT.JET.OLEDB.4.0;DATA SOURCE="&DB_location
I do it this way to make it easy on my users of the software...
I would like to find out what would be the best way to secure a database from outside users. Here's my problem.
I'm working on a piece of software where users create custom asp files that have to read/write an access 2k database file. This database is located in the same directory as the asp...
ok... I found out my solution... It was nothing with my code, it was an IIS issue.
These problems occur mostly (99%) with Windows 2000 or Windows XP Server. They are documented (and several solutions are presented) in Microsoft Knowledge Base article Q259725. Basically, after being severely...
I'm having some trouble programming a simple ActiveX DLL to use for a web site.
Here is my code for the DLL
----------------------------
Option Explicit
Public Function getResponse() As String
Dim db As Database
Dim rsTT As Recordset
Dim strSQL As String
Dim myResponse As...
I need some help developing a simple app that uses winsock to connect to a server.
What I am doing is programming a client app and a server app. Currently they communicate through winsock. The problem that I am having is that most of the people that will be using this are behind a proxy server...
I am having some trouble opening up a table with a space in the name.
Here's an example of what I'm doing...
Dim db As Database
Dim rsTT As Recordset
Set db = OpenDatabase(strPath)
Dim strSQL As String
strSQL = "select * from " & tbName & " where ID = " & ID
Set rsTT =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.