how to redirect the page when you click the tab( jquery Tab)
- by kumar
Hello,
I have four jquery tabs in my masterpage..
<div class="floatCenter"></div>
<ul>
<li><%=Html.ActionLink("A", "index", "shared", new { area = "a" }, new { @id = "a" })%></li>
<li><%=Html.ActionLink("B", "index", "shared", new { area = "b" }, new { @id = "b" })%></li>
<li><%=Html.ActionLink("C", "index", "shared", new { area = "c" }, new { @id = "c" })%></li>
<li><%=Html.ActionLink("D", "index", "shared", new { area = "d" }, new { @id = "d" })%></li>
<li><%=Html.ActionLink("E", "index", "shared", new { area = "e" }, new { @id = "e" })%></li>
<li><%=Html.ActionLink("F", "index", "shared", new { area = "f" }, new { @id = "f" })%></li>
</ul>
</div>
so when I click user on B tab I should not give permision to the user to access that link?
I need to redirect the home ..again..
and also i shoudl not give permision to access the controler actoin in the B tab from URL?
thanks