Connecting Tech Pros Worldwide Help | Site Map

create url with username and password

 
LinkBack Thread Tools Search this Thread
  #1  
Old May 10th, 2007, 07:25 PM
Co
Guest
 
Posts: n/a
Default create url with username and password

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, 04:45 PM
ThatsIT.net.au
Guest
 
Posts: n/a
Default 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, 10:15 AM
Co
Guest
 
Posts: n/a
Default 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, 03:25 PM
ThatsIT.net.au
Guest
 
Posts: n/a
Default 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
>
 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 220,662 network members.