Ask a Question related to ASP Database, Design and Development.
-
jyoti #1
write to database without giving write permission to IIS
Hi there,
I have some ASP code that writes to access database. For
security reason I do not want IUSER to give write
permission to database folder. I am using IIS 5.0 and
vbscript.
Is there any way writing to access database can be done
without giving write permission to IUSER?
Is there any dll or com object or source code?
I appreciate your time.
Thanks
Jyoti
jyoti Guest
-
Cannot Write to Database
Hi I am just starting to teach myself to use Ultradev with databases I have created a simple test site in Dreamweaver Ultradev that is linked to a... -
directory contend write into database
Hello, we started with CF after 5 years again. and test the functions. OK the Problem is, we must load the contend of a Directoryfilenames into... -
permission to write a file (with java)
hi there i've wrote a piece of java-code that runs great if i start it from eclipse. when i pack it to a jar-file and put it in the customtags... -
User ASPNET needs permission to write on CD
Hi, how can I give the user ASPNET the permission to write files on CD (e.g. drive e:). Thanks in advance -- Best regards Henry -
Looking for a webservice example to write to a database in VB
Any ideas? -- ______________________ David Fetrow HelixPoint LLC. http://www.helixpoint.com davef@helixpoint.com -
Aaron [SQL Server MVP] #2
Re: write to database without giving write permission to IIS
Yes, give write permissions to a specific Windows user, and require Windows
Authentication to run the ASP pages.
Or, use a database product that doesn't require explicit file writing
permissions.
(No, "dll or com object" will not solve this problem. This is not an issue
of code techniques, it's a issue of Windows security and database platform
choice.)
--
[url]http://www.aspfaq.com/[/url]
(Reverse address to reply.)
"jyoti" <muhammed_rahman@hotmail.com> wrote in message
news:1675401c447f5$d7c33270$a401280a@phx.gbl...> Hi there,
> I have some ASP code that writes to access database. For
> security reason I do not want IUSER to give write
> permission to database folder. I am using IIS 5.0 and
> vbscript.
>
> Is there any way writing to access database can be done
> without giving write permission to IUSER?
> Is there any dll or com object or source code?
>
> I appreciate your time.
>
> Thanks
> Jyoti
>
Aaron [SQL Server MVP] Guest
-
Jeff Cochran #3
Re: write to database without giving write permission to IIS
On Tue, 1 Jun 2004 09:31:08 -0700, "jyoti"
<muhammed_rahman@hotmail.com> wrote:
You have to give MODIFY permission to whatever user account is>Hi there,
>I have some ASP code that writes to access database. For
>security reason I do not want IUSER to give write
>permission to database folder. I am using IIS 5.0 and
>vbscript.
>
>Is there any way writing to access database can be done
>without giving write permission to IUSER?
accessing the database file *and* folder. That's a function of
Access, not IIS or ASP.
Not that works around this. An Access database creates a temporary>Is there any dll or com object or source code?
lock file. That's why the user has to have rights to the folder as
well as the access file. My first choice would be to move from Access
to MSDE, or SQL Server if you can afford it. Second would be to use
an account as Aaron suggested, forcing a login with a separate Windows
account. It's not the anonymous user account, but the account still
has access to the folder.
Jeff
Jeff Cochran Guest



Reply With Quote

