Mar 8, 2001 #1 Nazgul Programmer Oct 18, 2000 16 AR How i can validate my user with a site in a link? example http://user::password&www.site.com ? Thanks
How i can validate my user with a site in a link? example http://user::password&www.site.com ? Thanks
Mar 8, 2001 #2 DougP MIS Dec 13, 1999 5,985 US You need to have a database or something that has the user and or password. you would pass it like this http://www.site.com/Myloginpage.asp?login=xxxxx&password=yyyy then in your Myloginpage.ASP page have this <%@ Language=VBScript %> <%pass=request.querystring("password"%> <%log=request.querystring("login"%> ' then look up "pass" and "log" in your database if they match then display a welcome message etc. else Response.Write("Sorry Invalid Login" %> DougP, MCP Visit my WEB site http://www.barcodeone.com to see how Bar-codes can help you be more productive Upvote 0 Downvote
You need to have a database or something that has the user and or password. you would pass it like this http://www.site.com/Myloginpage.asp?login=xxxxx&password=yyyy then in your Myloginpage.ASP page have this <%@ Language=VBScript %> <%pass=request.querystring("password"%> <%log=request.querystring("login"%> ' then look up "pass" and "log" in your database if they match then display a welcome message etc. else Response.Write("Sorry Invalid Login" %> DougP, MCP Visit my WEB site http://www.barcodeone.com to see how Bar-codes can help you be more productive