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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T18:33:58+00:00 2026-05-30T18:33:58+00:00

I have a user control that creates a new record in a database. After

  • 0

I have a user control that creates a new record in a database. After it creates the new record, I would like to redirect it back to the view its from. The purpose of this is to refresh the view so that it can show the newly created record. The problem is that user control can exists in more than one view, so how can i know which view is the user control from? so that I can achieve the above scenario? Thanks,

RWendi

  • 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-30T18:33:59+00:00Added an answer on May 30, 2026 at 6:33 pm

    I have a user control that creates a new record in a database.

    No, it doesn’t. It just renders HTML, and nothing else.

    It’s the controller action which creates a new record in the database, and thus this is where the redirect should happen.

    The [HttpPost] action which accepts the model/form should perform the redirect after the save has been completed.

    E.g:

    public ActionResult Save(SomeModel model)
    {
       db.Save(model);
       return RedirectToAction("Index");
    }
    

    I’m assuming that the “view” you want to refresh is the same page, regardless of which page the user controller was rendered on, therefore the above code is fine.

    On a side note, you shouldn’t be using user controls (e.g partials) for rendering forms.

    You should be using editor templates. The presentation code which renders the form (and specifies which action to post to) should be in the view, not in the user control.

    EDIT – example of how to render form on Views:

    Instead of doing this on a View:

    @Html.Partial("_SomeModel")
    

    Do this:

    @using (Html.BeginForm()) {
       @Html.EditorFor(model => model.SomeModel)
    }
    

    And place the form markup in the editor template. The key thing here is IMO the Views should be responsible for setting up the form, not the user control.

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

Sidebar

Related Questions

I have a custom user control in XAML that creates a ItemsControl which ItemsPanel
I have a user control that I've created, however when I go to add
I have created a user control (CheckedDirTree) that exposes a CheckedFolder property which in
I have a user control that is pretty basic. It contains several TextBox controls,
I have a user control that I'm building. It's purpose is to display the
i have a user control that descends from UserControl. When dropped onto the form
I have a user control that has a few public properties, one is an
I have a user control that takes a several seconds to load. Is there
I have a user control that has a grid (the one you get automatically
I have a ListView-derived class which creates a bunch of user controls that are

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.