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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T00:44:04+00:00 2026-05-23T00:44:04+00:00

[HttpGet] public ActionResult Index() { return View(); } [HttpPost] public ActionResult Index(HomeOfficeViewModel viewModel) {

  • 0
    [HttpGet]
    public ActionResult Index()
    {
        return View();
    }

    [HttpPost]
    public ActionResult Index(HomeOfficeViewModel viewModel)
    {
        return RedirectToAction("SearchResults", "HomeOffice", viewModel);
    }

    public ActionResult SearchResults(HomeOfficeViewModel viewModel)
    {
        if (viewModel.FirstName != null && viewModel.LastName == null && viewModel.FullSsn == null)
        {
            List<Domain.Model.PolicyHolder> ph = _policyHolderRepository.Where(x => x.FirstName == viewModel.FirstName).ToList();
            if (ph.Count != 0)
            {
                var searchresults = from p in ph
                                    select new SearchResultsViewModel
                                               {
                                                   FullSsn = p.Ssn,
                                                   FullName = p.FirstName + " " + p.LastName,
                                                   UserId = p.UserId
                                               };
                TempData["SearchedItem"] = "<<< First Name >>> is '" + viewModel.FirstName + "'";
                return View("SearchResults", new SearchResultsViewModel() {SearchResults = searchresults.ToList()});
            }
            else
            {
                ModelState.Clear();
                ModelState.AddModelError("Error", "First Name searched does not exist in our records");
                return View("Index");
            }
        }

        else
        {
            return View();
        }
 }

values in the viewModel are being shown in the url like this

http://sample.url.com/HomeOffice/SearchResults?FirstName=testing

I should not show them in the url because I will be sending ssn. Is there a way to hide them or any better way to do this.

Thanks.

  • 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-23T00:44:05+00:00Added an answer on May 23, 2026 at 12:44 am

    RedirectToAction will create a GET request to the named action (SearchResults in your case) which is probably trying to serialize your view model fields. Instead, you could use TempData

    [HttpPost]
    public ActionResult Index(HomeOfficeViewModel viewModel)
    {
        TempData["Field1"] = "Value1";
        TempData["HomeOfficeViewModel1"] = viewModel;
        return RedirectToAction("SearchResults", "HomeOffice", viewModel ?? null);
    }
    
    public ActionResult SearchResults(HomeOfficeViewModel viewModel)
    {
        string field1 = TempData["Field1"].ToString();
        if(viewModel == null)
            viewModel = TempData["HomeOfficeViewModel1"] as HomeOfficeViewModel;
        return View(viewModel);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have 2 action methods: [HttpGet] public ActionResult Customize() { return View(new CustomizeViewModel {
In ASP MVC3 RedirectToAction kills data in Session...WHY? Consider this code. [HttpGet] public ActionResult
I have the following code: [HttpGet] public ActionResult Edit(int req) { var viewModel =
I am redirecting the view from [HttpPost] method to [HttpGet] method. I have gotten
Simplified example: [HttpGet] public ActionResult Report(DateTime? date) { if (!date.HasValue) { date = DateTime.Now;
I'm trying to return a chart to an MVC ActionResult as the view's Model
I'm having trouble when handling the Post request for my controller: [HttpGet] public ActionResult
I can decorate an action either with the [AcceptVerbs(HttpVerbs.Post)]/[AcceptVerbs(HttpVerbs.Get)] [AcceptVerbs(HttpVerbs.Post)] public ActionResult Create(string title)
I have two edit Action methods, one for HttpGet and one for HttpPost. The
An HTTP GET query string is a ordered sequence of key/value pairs: ?spam=eggs&spam=ham&foo=bar Is,

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.