i am using asp.net mvc 2.0. in that i am using partial views but whenever i clicked on particular link i get the follwing error
404 Not Found
can any one konw the solution the application run properly at local host but it shows the error when i uploaded on the server. thanks.
How did you generate the links? You should always use Html.ActionLink() or Url.Action() to generate links, to avoid problems when deploying.
For example, if you want to link to /Ctrl/Act/123 you should not use this:
but this: