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

  • Home
  • SEARCH
  • 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 3802498
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T14:13:05+00:00 2026-05-19T14:13:05+00:00

I’m setting up a new project and would like to have some tips about

  • 0

I’m setting up a new project and would like to have some tips about it so it will be done right from the start.

Simply put, this is my project:

  1. There will be some about/info pages: about us, contact, how to.. Is it good practice to then create a AboutController or should i make seperate controllers for each page?

  2. There will be a member area which needs login. Is it a good idea to create an Area for this?
    Maybe like: xxx.com/member/stuff/edit/1

  3. Would I then need to create a “general” Area or could i just put “About” in the root, like this: xxx.com/about/contact instead of xxx.com/general/about/contact ?

  4. What about master pages. The page will look very much alike when logged in, and when not. Is it good practice to have two master pages for this and try to reuse code (like the footer and menu) with partials?

  5. I’ve only worked a little bit with MVC 2, is it stupid to not go with MVC 2 RC for a brand new project like this?

Any answers or advice is highly appreciated.
Thank you

  • 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-19T14:13:06+00:00Added an answer on May 19, 2026 at 2:13 pm

    There will be some about/info pages:
    about us, contact, how to.. Is it good
    practice to then create a
    AboutController or should i make
    seperate controllers for each page?

    I usually have a Home or About (or both) Controller that houses these pages. Separate controllers are not usually necessary. In most of my sites these are almost all static content pages that do not accept POST, so the controllers are very thin anyway.

    There will be a member area which
    needs login. Is it a good idea to
    create an Area for this?

    This decision is quite subjective. I would suggest that if you don’t have a clear understanding when and why you want an area, then don’t use one. Also, if the only area’s your application has our logged-in members and not, then it seems like Areas are not needed.

    Would I then need to create a
    “general” Area or could i just put
    “About” in the root

    In the root, that is the “general” area.

    What about master pages. The page will
    look very much alike when logged in,
    and when not. Is it good practice to
    have two master pages for this and try
    to reuse code (like the footer and
    menu) with partials?

    I do not use two masters for this situation. All that changes for most of my sites is some header content (presence of log in or log out link).

    What I do instead is create an Html Helper to conditionally render one control or another:

    public static class PackageThumbnailHelper
    {
        public static MvcHtmlString AuthenticationControls(this HtmlHelper helper)
        {
                    if (helper.ViewContext.HttpContext.Request.IsAuthenticated) {
                        return helper.Partial(MVC.Shared.Views.LoggedOnAuthenticationControls);
                    } else {
                        return helper.Partial(MVC.Shared.Views.NotLoggedOnAuthenticationControls);
                    }
        }
    }
    

    I’ve only worked a little bit with MVC
    2, is it stupid to not go with MVC 2
    RC for a brand new project like this?

    MVC 2? How about MVC 3? MVC 3 was released recently. It includes the Razor view engine, and because of that I would say it is definitely worth using. I see no reason not to use MVC3 for a new project.

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

Sidebar

Related Questions

this is what i have right now Drawing an RSS feed into the php,
I have just tried to save a simple *.rtf file with some websites and
I want use html5's new tag to play a wav file (currently only supported
link Im having trouble converting the html entites into html characters, (&# 8217;) i
Does anyone know how can I replace this 2 symbol below from the string
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
Seemingly simple, but I cannot find anything relevant on the web. What is the
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti

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.