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 7740989
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T08:54:51+00:00 2026-06-01T08:54:51+00:00

I am trying to pass the parameter, which is ‘priceValue’. How can I pass

  • 0

I am trying to pass the parameter, which is ‘priceValue’. How can I pass this value through using RedirectToAction? or do you have any idea for that?
I am trying to make shopping cart now. ‘priceValue’ is radioButton value. Could you give me some help? After passing the priceValue, and I want to use if statement what I have written in AddToCart. Is it possible to use it?
Please help me..
Thanks.

public class ShoppingCartController : Controller
{
rentalDB db = new rentalDB();
    //
    // GET: /ShoppingCart/
    public ActionResult Index()
    {
        var cart = ShoppingCart.GetCart(this.HttpContext);

        // Set up our ViewModel

        var viewModel = new ShoppingCartViewModel
        {
            CartItems = cart.GetCartItems(),
            CartTotal = cart.GetTotal()
        };

        // Return the view
        return View(viewModel);
    }


    // GET: /Store/AddToCart/5
    [HttpPost]
    public ActionResult AddToCart(int id, FormCollection col)
    {
        var addedProduct = db.Product
            .Single(product => product.productId == id);
        decimal priceValue = Convert.ToDecimal(col["price"]);
        //how to pass priceValue to index
        if (Convert.ToDecimal(col["price"]) == addedProduct.threeDayPrice)
        {
            ViewBag.price = new SelectList(db.Product, "productId", "threeDayPrice");
            //How to put this value into cart.AddtoCart(addedProduct) with date and price
        }
        else if (Convert.ToDecimal(col["price"]) == addedProduct.aWeekPrice)
        {
            ViewBag.price = new SelectList(db.Product, "productId", "aWeekPrice");
            //How to put this value into cart.AddtoCart(addedProduct) with date and price
        }

        // Retrieve the product from the database
        // Add it to the shopping cart
        var cart = ShoppingCart.GetCart(this.HttpContext);

        cart.AddToCart(addedProduct);

        // Go back to the main store page for more shopping
        //I don't know how to pass the 'priceValue' by using RedirectToAction.
        return RedirectToAction("Index", new {id = priceValue});
    }
  • 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-06-01T08:54:53+00:00Added an answer on June 1, 2026 at 8:54 am

    You have to add a parameter to your Index method in order to be able to get the value passed in to the Index method:

    public ActionResult Index(int priceValue = 0).
    

    Instead of 0, you can then use whatever default value you wish. Then calling

    return RedirectToAction("Index", new {@priceValue = priceValue});
    

    will allow you to get the value inside the method.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to pass parameter from python page to another through the URL,this parameter(key
I'm trying to pass value by using EL expression in get request parameter, but
I have a Flash Professional CS5 movie which I'm trying to pass a parameter
I am trying to pass a parameter as text which contains multiple ' -
I am am trying to pass a parameter into my textbox which communicates to
I am trying pass a Hashtable as parameter into a method which itself passes
I am trying to pass array parameter to SQL commnd in C# like below,
I am trying to pass in a function as a parameter: GEvent.addListener(marker_1, click, populateMarkerWindow(0,
I am trying to pass an array (2d) to a function as an parameter.
ERROR: unknown web method DoIt Parameter name: methodName I'm trying to pass a date

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.