Creating URL's

Trancedified

Freshman
Joined
Feb 10, 2004
Messages
27
Location
Highland, CA
Hello,

I am a newbie looking to get started on a project where I have to somehow create a URL that has an encrypted username and password along w/ possibly SQL Server 2000 queries all concatenated into one long string.

Any beginner - advanced VB Script code is appreciated!


Chris
 
I see no reason to put the user name, password and queries in the URL, will be better is you put those inside a Session variable, something like

Code:
Session("user") = "username"
Session("pwd") = "password"

you can do the same for the queries if you're creating queries between pages
 
Back
Top