| Author |
response.sendRedirect problem
|
Atishay Kumar
Greenhorn
Joined: Feb 23, 2004
Posts: 2
|
|
I am trying to redirect user to a page when a condition is satified String strUrl="ChangeUserPassword.jsp?strInfo=" + "UserID:"+strUserId+" does not exist"; System.out.println(strUrl); response.sendRedirect(strUrl); The url is printing fine on console ========== ChangeUserPassword.jsp?strInfo=UserID:atisahy does not exist ========== but when it is redirected all capital letters get changed in lower case. the url the browser get redirected to is. ========= "http://localhost:8080/INFBKGR3/changeuserpassword.jsp?strinfo=userid:?strInfo=UserID:atisahy%20does%20not%20exist" ========== why is this happening
|
<br />Atishay
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56162
|
|
|
I have no idea about the lower-casing, but the %20's are the correct URL encoding for space characters.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Sripathi Krishnamurthy
Ranch Hand
Joined: Mar 07, 2005
Posts: 232
|
|
which web/app server are you using? I havent seen any server wherein the jsp file names gets changed to lowercase names. Is this jsp file generated at runtime?
|
 |
 |
|
|
subject: response.sendRedirect problem
|
|
|