I have one doubt.
I have one view called CustomerMaster
. In CustomerMaster
view I have field Like 'Area', 'City' etc. If city is already in the list it will be automatically shown in the Dropdown .
Suppose the City which I need is not in the list, means I have to add that city. So I decided to keep one 'Add' button near to 'city' field. If I click that button it needs to redirect to that view. So how can i do this in MVC4?
1) How can I keep button near to the field?
2) How to redirect from one view to another view while clicking the button in mvc4?
Thanks .