Im having a problem with going to the correct link. When im trying to go to index view in template folder it goes to index view in admin folder instead and i cant understand why when the code says it should look for this view in this specific folder:
<fieldset>
<legend>SiteConfig</legend>
<p>Create new or edit Customers, Projects etc:
@Html.ActionLink("Create", "Add", "Admin", string.Empty) |
@Html.ActionLink("Edit", "AddEdit", "Admin", string.Empty)
</p>
<p>Create new or edit Users:
@Html.ActionLink("Create", "Add", "Admin", string.Empty) |
@Html.ActionLink("Edit", "AddEdit", "Admin", string.Empty)
</p>
<p>Upload or change Logo:
@Html.ActionLink("Upload", "Add", "Admin", string.Empty) |
@Html.ActionLink("Change", "AddEdit", "Admin", string.Empty)
</p>
<p>Upload or change Template:
@Html.ActionLink("Upload", "Index", "Template", string.Empty) |
@Html.ActionLink("Change", "AddEdit", "Admin", string.Empty)
</p>
</fieldset>