Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Link with autentication

Status
Not open for further replies.
You need to have a database or something that has the user and or password.

you would pass it like this

then in your Myloginpage.ASP page have this

<%@ Language=VBScript %>
<%pass=request.querystring(&quot;password&quot;)%>
<%log=request.querystring(&quot;login&quot;)%>

' then look up &quot;pass&quot; and &quot;log&quot; in your database
if they match then display a welcome message etc.

else

Response.Write(&quot;Sorry Invalid Login&quot;) %>


DougP, MCP

Visit my WEB site to see how Bar-codes can help you be more productive
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top