Internal site authentication

I have a classic asp internal site hosted on IIS. I would like to use the users domain login to control access to pages etc. In the site. In my old Dreamweaver asp vbscript site I just kept the pages in folders and controlled the access by setting security at the folder level then on update forms I would use {Request.LOGON_USER} to populate the user details when updating a record in my database.

Is this how I would handle it in wappler classic asp? Is there a tutorial somewhere showing ho to authenticate local users?

Have a look at https://docs.wappler.io/t/security-and-login/2836

Thanks for the reply Ben but this does not address authenticating a user using domain credentials. I don’t want users to be required to log in I want to assign based on the internal domain.

Have you seen this.

Actually, all I need to do here is get he info into a text box so I can submit it.

Back in dreamweaver I would include this:

<input name="by" type="hidden" id="by" value="{Request.LOGON_USER}" />

it would give me a hidden value to update my database

I can include

<input name="by" type="hidden" id="by" value="{Request.LOGON_USER}" />

and it diaplays on the screen, I just need to get it to display in the text input on a form

OK, solved this on my own
after selecting dynamic value I replace the dmx-bind:value

with this
value="<%= Response.Write(Request.ServerVariables(“AUTH_USER”)) %>"

this defaults the field to the logged in user which I can now pass on to the database