In my code, I have the following:
<ul>
..
<li><a href="@Url.Action("SplEdit", "Spk", new { id = Model.Cntr}) ">Module</a></li>
</ul>
Looking at the url, it appends a #ui-tabs-3 to the url. How do I change the value to something different such as say #ui-tabs-mytab
Are you using Jquery UI tabs? If so, why are you putting a url on your anchor tag? Jquery UI Tabs are designed to dynamically show and hide DIV’s on your page for each corresponding tab. There is also an option to allow you to retrieve content through AJAX in which you specify a URL, but no #tab-xxx is appended.
Here is an example from JQuery UI’s website.