I have a master page which all my views inherit from. The issue I am having is with the form tag which is created in the master page and then the form tag which is created in view.
Because of the form being inside the master page form, all my postbacks are sent to the controllers Index method and its forcing me to create a new method Index which forces an HttpPost.
Further this is causing problems with routes like: /projects/add/ and /projects/delete/1 where everything is router to the Index Method.
WTF? Am i missing something here?
Thanks anyone