We are currently moving our site, while doing this we are now going to make people logon to our site (if your name is not in our IIS you can not get in), while doing that we are having another company keep our files on thier site (they maintain our files .)
The company is letting us copy thier logon code and paste it into one of our frames for our site so that it just looks part of our site. Is there a way that when they log on to our site that thier user names and passwords (same as our sites) for the other company will automaticlly go into the user name and password. Code:
I require a utility in ASP which has to logon to another site, with my username and password and grab the content of thet page any restriction will be there in the server preventing these type of access. how to authenticate ? will it work in the secure sites?
I'm using Basic Authentication for my web site - not great I know but I'm having to support devices like the Nokia 9210i which dosn't seem to like the digest information for windows domain servers.
The question is that I would like to be able to somehow capture that logon username/id so that I can use it within the web site to track changes made by the user.
I've thought about switching off authentication all together and writing my own logon asp page (query to an SQL database or something and then store the result in a session variable), but if I can somehow capture and access the basic authentication information, it would save me some work.
I have a working basic login script that processes an Access database to see if the username and password is correct then logs in if so and passes through to a members area. However, what stops anyone from just downloading the database and opening it (altho the database can be passworded admittedly).Is there a way to make the database more secure, or to allow login from a more secure system?
I'm using an online app made with asp which authenticates login with a MS Access Database and then redirects the user to a URL corresponding to the entry for the logon credentials in the database.
The url has anonymous browsing disabled, thus I need to pass a username and password to the iis server when the user is redirected to this site.
This process must be automatic and not visible to the client logging on.
Can this login info be passed to the iis server via ASP code, and if so can you help me with necessary code snippets ?
I am setting up an intranet application and would like to get access to the users windows network log on user name. I have turned on "windows authentication" for the application. I was hoping to find it with the server variables, however the LOGON, AUTH and REMOTE users were blank.
I then created a WindowsIdentity object, the name I found there was MAC-WEBASPNET which is a generic user account name. What am I missing here?
i am developing an intranet area where my boss says he wants the logon to be related to the local accounts,if no local account exist then they will be refused access, i am a little lost with this.
I am looking into creating a intranet at work which will do a number of things including forums etc but one thing that i would like to do i dont know if it is possible or not.
When a user signs into their workstation it will launch the intranet, no problem, then i want it to log them in as the user id they logged into the workstation as. Is there any way of getting this information???
I have a logon field including user name and password, which is stored to an access DB. Many websites have a logon and password field integrated into the page. I want the field to always be there.
When successfully logged on, the user will have access to other pages that I designate.
I have a complete web page and I want to stick the code from the working logon field, etc in the page w/o redesigning it around the existing logon.asp page.
I am asking if this is something I can do with the skills that I currently possess? Remember, I'm a novice .asp programmer, but an experienced web designed. We're working on the "dynamic" in web page design.
Is it possible to logon to the SMTP server that comes with IIS from a machine other than the actual server. Ideally I would want to put some VB Script in an SQL Server Job Schedule or an ASP page that uses CDONTS and use it to pull the emails into the database. The SQL Server is on another machine on the network. Is this viable.
i having a problem on open crystal report version 8.5 or 9, when my ASP program call the report using VBSCRIPT coding?, can i have source code to call the crystal report logon ?
I am inserting data into Access when user logs on: .............. SQL = "INSERT INTO tblLog (fldUserName,fldTimeIn,fldSID) VALUES ('" & u & "',#" & session("Date") & "#,'" & session.SessionID & "')" con.Execute(SQL) ..................... in here it inserts the date :01/09/2003
But when logging out : ............. SQL="UPDATE tblLog SET fldOffline=1,fldProper=1 WHERE fldUserName= '" & session("admin") & "' AND fldTimeIn=#" & session("date") & "# AND fldOffline=0" con.execute(SQL) ............... it doesn't update the record.If I eliminate the date query here,it updates there is no syntax error is there?
I have a logon field including user name and password, which is stored to an access DB. Many websites have a logon and password field integrated into the page.
I have a complete web page and I want to stick the code from the working logon field, etc in the page w/o redesigning it around the existing logon.asp page.
I am asking if this is something I can do with the skills that I currently possess? Remember, I'm a novice .asp programmer, but an experienced web designed. We're working on the "dynamic" in web page design.
I need to get the current logon (to AD) user name on ASP level. Is there any ActiveX (ocx,dll) object in windows directory, which I can use? I used the nwdir.dll file to get this name from novell directory with ndap....