Yes that is what is called URL Rewriting.  i.e

<a href="hotmail.com?username=karthik&password=@#$%AbDf">Sign In</a>

So when you click the above link.  It will go to hotmail.com with username
and password info.

http://www.hotmail.com?username=karthik&password=@#$%AbDf

Which hotmail.com can get it by using.

String userName = request.getParameter("username");
String Password = request.getParameter("password");

Hey its very simplistic stuff but at real time hotmail.com reads the [path
info & paramters] and does a lots of thing

Have a great day.

Karthikeyan B


----- Original Message -----
From: "arun s" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 07, 2003 6:44 PM
Subject: HTML + JSP


>
> hi all,
>   I use a JSP page which creates a table using a for loop. My doubt is
> similar to a inbox in our mail. Once when I click a mail how does the
server
> takes to a particular mail. I use an array for storing a value and want to
> pass that value to other page. I tried with session values but Im unable
to
> send the value of the particular link. How can I do.
>
>    I want to know whats the meaning of a url like hotmail.com?box=aaa. Is
> this some thing related to my question.
> plz b fast in reply.
> with cheers,
> karthik
>
> _________________________________________________________________
> The new MSN 8: smart spam protection and 2 months FREE*
> http://join.msn.com/?page=features/junkmail
>
>
===========================================================================
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com
>

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

Reply via email to