In my application I have a layout page for viewing the project:
This page have 4 sub-pages (Details, Photos, addresses and comments).
Example:
/myproject
= Open the details page
/myproject/Photos
= Open the Photos page
/myproject/Addresses
= Opens the page addresses
/myproject/Comments
= Open the page of comments
Question
How to use #
to load pages via ajax to the URL?
Example
/myproject
= Open the details page
/myproject#Photos
= Open the Photos page
/myproject#Addresses
= Opens the page addresses
/myproject#Comments
= Open the page of comments
In page layout where I have four buttons, click on the photo for example, the page would be loaded via ajax. and url go
from /myproject
to /myproject#Photos
Resume
How to use '#' in asp.net MVC?