Connecting Tech Pros Worldwide Help | Site Map

create url with username and password

  #1  
Old May 10th, 2007, 08:25 PM
Co
Guest
 
Posts: n/a
Hi All,

I use a website in asp for which I have to type a username and
password everytime I want to login.
On the form are two fields for typing the username and password and
one button LOGIN.
I want to create an standard url for the website which includes my
username and password so I don't have to type it in everytime.

I looked at the page source but I can't find the right string.
I thought maybe http://.........aspx?username=me&password=it

but that doesn't work.

Regards

Marco

  #2  
Old May 11th, 2007, 05:45 PM
ThatsIT.net.au
Guest
 
Posts: n/a

re: create url with username and password



"Co" <vonclausowitz@gmail.comwrote in message
news:1178824987.965252.113560@h2g2000hsg.googlegro ups.com...
Quote:
Hi All,
>
I use a website in asp for which I have to type a username and
password everytime I want to login.
On the form are two fields for typing the username and password and
one button LOGIN.
I want to create an standard url for the website which includes my
username and password so I don't have to type it in everytime.
>
I looked at the page source but I can't find the right string.
I thought maybe http://.........aspx?username=me&password=it
>
but that doesn't work.
You need to know the varables used to captuer the username and password and
if they are captuered from the querystring or a form.



Quote:
>
Regards
>
Marco
>
  #3  
Old May 13th, 2007, 11:15 AM
Co
Guest
 
Posts: n/a

re: create url with username and password


On 11 mei, 18:31, "ThatsIT.net.au" <me@thatsitwrote:
Quote:
"Co" <vonclausow...@gmail.comwrote in message
>
news:1178824987.965252.113560@h2g2000hsg.googlegro ups.com...
>
Quote:
Hi All,
>
Quote:
I use a website in asp for which I have to type a username and
password everytime I want to login.
On the form are two fields for typing the username and password and
one button LOGIN.
I want to create an standard url for the website which includes my
username and password so I don't have to type it in everytime.
>
Quote:
I looked at the page source but I can't find the right string.
I thought maybehttp://.........aspx?username=me&password=it
>
Quote:
but that doesn't work.
>
You need to know the varables used to captuer the username and password and
if they are captuered from the querystring or a form.
>
>
>
Quote:
Regards
>
Quote:
Marco
Is there some way to find out, for example by clicking the button or
getting it from the source code?

Marco

  #4  
Old May 13th, 2007, 04:25 PM
ThatsIT.net.au
Guest
 
Posts: n/a

re: create url with username and password



"Co" <vonclausowitz@gmail.comwrote in message
news:1179050810.647817.27170@o5g2000hsb.googlegrou ps.com...
Quote:
On 11 mei, 18:31, "ThatsIT.net.au" <me@thatsitwrote:
Quote:
>"Co" <vonclausow...@gmail.comwrote in message
>>
>news:1178824987.965252.113560@h2g2000hsg.googlegr oups.com...
>>
Quote:
Hi All,
>>
Quote:
I use a website in asp for which I have to type a username and
password everytime I want to login.
On the form are two fields for typing the username and password and
one button LOGIN.
I want to create an standard url for the website which includes my
username and password so I don't have to type it in everytime.
>>
Quote:
I looked at the page source but I can't find the right string.
I thought maybehttp://.........aspx?username=me&password=it
>>
Quote:
but that doesn't work.
>>
>You need to know the varables used to captuer the username and password
>and
>if they are captuered from the querystring or a form.
>>
>>
>>
Quote:
Regards
>>
Quote:
Marco
>
Is there some way to find out, for example by clicking the button or
getting it from the source code?
>

look at teh form, see what controles are sent,

if you have a text box
<INPUT type="text" id=text1 name=text1>

then text1 will be one of your variables.

Also look at the form is it using get or post for its method, if using post
then you would need to send your query using post.

in the asp page they will have somthing like

Request.querystring("text1")
this will recive from a querystring or a form using the get method

Request.Form("text1")
this will recicve from a post form

Request("text1")

will recive from both

Quote:
Marco
>
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Embed username/password/etc. in exe at install time. jehugaleahsa@gmail.com answers 5 January 8th, 2008 04:35 PM
Index for username/password Cecil answers 12 December 30th, 2005 06:35 PM
Bypass username/password dialog when accessing remote network thoducng@gmail.com answers 1 November 19th, 2005 09:38 PM
how to create the username/password authorization dialog? John Davis answers 14 July 19th, 2005 12:16 PM