hi
refer below thread:
http://www.aspforums.net/Threads/154786/HTTP-Error-40411---Not-Found/Replies/10#Replies
when I enter text in text box like:
water fall
in will show in address bar like:
http://localhost:61221/Search/water+fall
but I want it will be like:
http://localhost:61221/Search/water fall
it put + between 2 words
Best Regards
Neda
Hi nedash,
You need to remove this code "Server.UrlEncode".I have modified below code as per your requirement. So please refer the below code.
Server.UrlEncode
Response.Redirect("Search/" + TxtsearchI.Text.Trim());
© COPYRIGHT 2024 ASPSnippets.com ALL RIGHTS RESERVED.