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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T14:43:31+00:00 2026-05-25T14:43:31+00:00

What thought process changes around application design would you recommend to someone completely new

  • 0

What thought process changes around application design would you recommend to someone completely new to asp.net with MVC who has typically worked on classic asp.net projects, in terms of new ways MVC expects you to think about your design?

Aside from the conventional separation of concerns bit where each layer has it own responsibility, there are new ways of working which one needs to be aware of. For eg. in MVC 3 we have the razor engine where you cant use any server controls. There is no postback. The page lifecycle looks different. etc.

More specifically, what are the things one will need to unlearn or re-learn in order to make the shift from classic asp.net to asp.net MVC with webforms or razor.

Thanks for time and sharing your views…

Edit

Has anything changed with respect to sessions, caching? Also, I am trying to understand routing. It seems to be required to be done for every view there is in my mvc webforms application along with the parameters. Wont this mean that I have to consider many different permutations there? In razor there seems to be no such need to map request routes. So under what conditions do I go for Razor over webforms in MVC applications?

  • 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-25T14:43:31+00:00Added an answer on May 25, 2026 at 2:43 pm

    where you can’t use any server controls

    errr!, they are now called Helper Controls, and their are cousin of web form controls, for example:

    in WebForms Engine:

    <asp:GridView ID="gv" AutoGenerateColumns="true" runat="server" CssClass="tbl-grid">
        <AlternatingRowStyle CssClass="row-alt" />
        <Columns>
            <asp:TemplateField>
                <ItemTemplate>
                    Food: <asp:TextBox ID="txt" runat="server" />
                </ItemTemplate>
            </asp:TemplateField>
        </Columns>
    </asp:GridView>
    

    in MVC Engine:

    var grid = new WebGrid(@Model, canPage: true);
    
    @grid.GetHtml(
        tableStyle: "tbl-grid",        
        alternateRowStyle: "row-alt",
        columns: grid.Columns(
            grid.Column("Title","Movie", 
                 @<text><input type="text" id="txt_@item.Title" /></text>), ...
    

    So you do have a lot of Helpers to play around, and it’s super easier once you pass the division of concerns that MVC represents, plus, you start to have full control of what you write in each view, use PartialViews etc ..

    It will be hard in the first tries, but keep searching StackOverflow for your questions and I’m sure tha they are already answered here, plus:

    Microsoft also partnered with Pluralsight and they are giving you a fantastic MVC (And Webforms) for ASP.NET 4.0 essential tutorial completely for free, just go through all video tutorials, I own a PLuralSight monthly account and they are really good in what they do:

    MVC 3 Essential Videos

    http://www.asp.net/mvc

    Webforms Essential Videos

    http://www.asp.net/web-forms

    Before you jump on your way to the MVC3 world, go through all Videos and you will know at the end, that there is nothing you can’t do anymore 🙂

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

Sidebar

Related Questions

I'm am currently developing an ASP.NET intranet application. One of the features of this
I thought .Net code gets compiled into MSIL, so I always wondered how do
I thought that there was some way in .net 3.0 to give an array
I thought I'd offer this softball to whomever would like to hit it out
I thought people would be working on little code projects together, but I don't
I'm in the process of creating an iOS5 application, what I'm after is the
I have legacy C++ code that changes a process DACL and am trying to
I'm currently developing a C# application which will record registry changes, save them to
I'm using the Simple XML library to process XML files in my Android application.
I am in the process of designing a web application which will have multiple

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.