Click here to Skip to main content
15,886,088 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello every one,

I need this type of requirement in my project.Is this possible to change url without reloading page in asp.net??

Hope some one help me.

Thanks in advanced.
Posted
Updated 27-Sep-22 21:28pm
Comments
Amir Mahfoozi 9-Nov-11 7:13am    
Maybe you want to load a user control into a part of your page ? Otherwise your question doesn't seem logical.

Hi,

upto my knowledge its not possible

but i've one solution for this

we can add some information to url without loading page

just like in javascript

JavaScript
location.href = location.href + '#hi+this+is+additional';


I hope you understood what I did

All the Best
 
Share this answer
 
Comments
vimal227 9-Nov-11 23:53pm    
I dont want to add hash in the url.My requirement is like below:

www.google.com to change www.google.com/test

Hope you understand.now you can suggest me any solution?
Muralikrishna8811 10-Nov-11 2:58am    
yeah you can change jjust as i did in above but it must refresh page

It's not possible because you can not change actual url from javascript to load same page

have you used the Ajax Control??? im mean...
the Script Control Manager?_

you can use the control in all your Web

regards www.google.com :D search for: Script control Manager :D
 
Share this answer
 
 
Share this answer
 
Technically that not possible with .net as .net is used on server side. and you need to change the URL which is on client side so... you will need to use JavaScript to manipulate the Browser URL history. Example [asp.net mvc] my url is

http://localhost:123/Home/Product

and I need to change it to

http://localhost:123/Home/Product/301 this can be achieved by



window.history.pushState('', 'My Page', 'Home/Product/301');


 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900