how to redirect the page when you click the tab( jquery Tab)

Posted by kumar on Stack Overflow See other posts from Stack Overflow or by kumar
Published on 2010-05-07T15:35:39Z Indexed on 2010/05/07 15:38 UTC
Read the original article Hit count: 702

Filed under:

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

© Stack Overflow or respective owner

Related posts about jQuery