Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7086463
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:33:09+00:00 2026-05-28T07:33:09+00:00

I have an ASP.NET MVC3 project that uses a tab strip on certain pages.

  • 0

I have an ASP.NET MVC3 project that uses a tab strip on certain pages. The tab stop is constructed in JavaScript. When the user performs action I would like to be able to redirect them to the correct page with the correct tab open. To achieve this I either need to pass a variable in the URL and get a handle on it using JavaScript or pass a variable back using the ViewBag or TempData and again, get a handle on it using JavaScript.

So my question is, how can I access these variables using JavaScript?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T07:33:10+00:00Added an answer on May 28, 2026 at 7:33 am

    You could pass the value as query string parameter when redirecting and in the target action simply define a view model:

    public class MyViewModel
    {
        public string MyValue { get; set; }
    }
    

    and then have an anchor or a controller action that will redirect to the target action and pass myvalue as query string parameter:

    @Html.ActionLink("go to foo", "foo", new { myvalue = "foo bar" })
    

    and when the link is clicked the user gets redirected to the Foo action which takes the view model as argument so that the binding happens automatically and passes this view model to the corresponding view:

    public ActionResult Foo(MyViewModel model)
    {
        return View(model);
    }
    

    and in the corresponding view you could do whatever you want with the view model:

    @model MyViewModel
    <script type="text/javascript">
        var myValue = @Html.Raw(Json.Encode(Model.MyValue));
        // TODO: do something with the value
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an asp.net mvc3 project, it has some reports in aspx web pages.
I have some C# code in my ASP.NET MVC3 project that's throwing an exception
In my solution I have an ASP.NET MVC3 project, and a WCF project that
I have an ASP.Net MVC3 project that calls a WCF service to get data.
I have an ASP.NET MVC 3 application that uses the Ninject.MVC3 extension to setup
in my solution I have an ASP.NET MVC3 project, and a WCF project that
I have ASP.NET MVC3 project and I am writing some extension methods that returns
In an ASP.NET MVC3 project I have a structure like this: Core.csproj -> 3rdparty1.dll
In a ASP.NET MVC3 Razor project I have 2 Models public class Post {
I have a MVC3 ASP.NET Project in which I am using jQuery and KendoUI

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.