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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:24:01+00:00 2026-05-27T02:24:01+00:00

Users on my site have their profile page. There, users can setup their data.

  • 0

Users on my site have their profile page. There, users can setup their data. On edit button press this page become editable.

Now another user can explore other users profiles.

So I wonder here:

  1. Should I make two controllers ProfileController/Index and ProfileAsAnotherUserSeeItController/Index. First use profile owner to setup data and another use other users to see those data?
  2. Have just one controller ProfileController/Index and based on some parameters decide what data to display (edit buttons, remove profile page items buttons etc.)?
  • 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-27T02:24:02+00:00Added an answer on May 27, 2026 at 2:24 am

    Personally, I would have a single controller => AccountsController or UsersController. In that I would have an ActionMethod called Details which lists all the details for a particular user.

    If my site was StackOverflow, a sample route would be: http://stackoverflow.com/users/30674/pure-krome

    which translates to

    {controller}/details/{id}/{optional anything .. which in this case is a name, for SEO}

    I would also have an Edit action method

    eg
    http://stackoverflow.com/users/edit/30674

    or

    {controller}/{action}/{id}

    Now, the logic in the Details Action Method would determine what is to be displayed on the view. So, if you want to have an Edit button, the controller action method should figure this out and the view will only display it, if it’s been told to.

    eg (pseduo code)

    public ActionResult Details(int userId)
    {
        var user = Database.Load<User>(userId);
        if (user == null)
        {
            return HttpNotFound();
        }
    
        var viewModel = new DetailsViewModel
                        {
                            DisplayName = user.DisplayName,
                            Name = (user.FirstName + " " + user.LastName).Trim()
                        };
        if (LoggedInUser != null && LoggedInUser.HasRole(Roles.CanEditThisUser)
        {
            viewModel.IsEditButtonVisible = true;
        }
    
        return View(viewModel);
    }
    

    and the view will be simple.. like

    <snip html stuff>
    @if (model.IsEditButtonVisible)
    {
        // display edit button Html code.
    }
    
    // Display user details Html stuff..
    

    Things to note :-

    1. Views are strongly typed to their own ViewModel.
    2. The Controller does all the figuring out of things.
    3. View is really really dumb.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have a site where different users can login, and depending on their
I have a section of my site where users can add addresses to their
I have users fill out their profile information somewhere on my site using the
I've got a site where people can add their profile and on that page
I have a site where users can post stuff (as in forums, comments, etc)
I have a site where users can log in and check on outstanding support
Let's say I have a site where Users can add Entries through admin panel.
I currently have a web site where users can select a custom theme. After
I have a User model, the user can gradually insert information on their profile
On my site I have user profiles. Each user profile can have a number

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.