Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. Absolutely lost with starting asp.net mvc

Absolutely lost with starting asp.net mvc

Scheduled Pinned Locked Moved ASP.NET
asp-netcsharparchitecturetutorialquestion
11 Posts 5 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • F Offline
    F Offline
    Frygreen
    wrote on last edited by
    #1

    I want to start with asp.net mvc and I am absolutely lost with terms and concepts. I work through a lot of microsoft trainings. But all samples mix up endless different concepts and terms. Can somebody give me a link to some kind of "bottom-up-tutorial"?

    K A R 3 Replies Last reply
    0
    • F Frygreen

      I want to start with asp.net mvc and I am absolutely lost with terms and concepts. I work through a lot of microsoft trainings. But all samples mix up endless different concepts and terms. Can somebody give me a link to some kind of "bottom-up-tutorial"?

      K Offline
      K Offline
      King Fisher
      wrote on last edited by
      #2

      Go with this video tutorial, Its a cool one there might be 100 Clips. https://www.youtube.com/watch?v=-pzwRwYlXMw[^]

      நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்

      A F 2 Replies Last reply
      0
      • F Frygreen

        I want to start with asp.net mvc and I am absolutely lost with terms and concepts. I work through a lot of microsoft trainings. But all samples mix up endless different concepts and terms. Can somebody give me a link to some kind of "bottom-up-tutorial"?

        A Offline
        A Offline
        Afzaal Ahmad Zeeshan
        wrote on last edited by
        #3

        Yes, here is an article[^] that I wrote for beginners like you. You can read it, it will guide you throughout the basics of ASP.NET MVC framework. I hope you will find it helpful. :)

        The shit I complain about It's like there ain't a cloud in the sky and it's raining out - Eminem ~! Firewall !~

        1 Reply Last reply
        0
        • K King Fisher

          Go with this video tutorial, Its a cool one there might be 100 Clips. https://www.youtube.com/watch?v=-pzwRwYlXMw[^]

          நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்

          A Offline
          A Offline
          Afzaal Ahmad Zeeshan
          wrote on last edited by
          #4

          Hopefully, you will like this article[^] of mine about ASP.NET MVC framework.

          The shit I complain about It's like there ain't a cloud in the sky and it's raining out - Eminem ~! Firewall !~

          K 1 Reply Last reply
          0
          • F Frygreen

            I want to start with asp.net mvc and I am absolutely lost with terms and concepts. I work through a lot of microsoft trainings. But all samples mix up endless different concepts and terms. Can somebody give me a link to some kind of "bottom-up-tutorial"?

            R Offline
            R Offline
            RajeeshMenoth
            wrote on last edited by
            #5

            Try this .. ASP.NET MVC Tutorial - For Beginners & Professionals or Getting Started with ASP.NET MVC 5

            F 1 Reply Last reply
            0
            • A Afzaal Ahmad Zeeshan

              Hopefully, you will like this article[^] of mine about ASP.NET MVC framework.

              The shit I complain about It's like there ain't a cloud in the sky and it's raining out - Eminem ~! Firewall !~

              K Offline
              K Offline
              King Fisher
              wrote on last edited by
              #6

              ohh.well ,I'm looking forward your answer for my question how to know which button is clicked in mvc[^]

              நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்

              A 1 Reply Last reply
              0
              • K King Fisher

                ohh.well ,I'm looking forward your answer for my question how to know which button is clicked in mvc[^]

                நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்

                A Offline
                A Offline
                Afzaal Ahmad Zeeshan
                wrote on last edited by
                #7

                To your comment for that answer "Not Clear sir,I'm new to MVC.", please read that article I have attached. The answer to that (sorry for going off-topic related to this thread), is that you need to send the information about your View and some other controls which were interacted through user. Which is a very common task in WPF, or Win Forms. If you view event handlers in those frameworks you find out this code,

                void button_Click(object sender, EventArgs e) {
                var button = sender as Button; // cast the object to Button
                var name = button.Name; // get the name of the button which triggered the function
                }

                In which, sender is the object which triggered this event. So, if you cast it to a Button object and so on. In ASP.NET you do not get such functionality by default, which is why you have to create such functionality yourself. Which, in my opinion would be best to use native forms. Which get submitted (using action attribute) to their own pages for processing. So you can redirect the user to where you want him to be. This way, you will check for values that are related to the controller action; SignUp or SignIn. Do not complicate things, use the simplest method that can be used. It was also pointed out, that you're having variables for your HTTP GET handler, not HTTP POST. Use a model to establish similarity, or... You can use JavaScript to control how things are handled on the client (handling click on SignIn or SignUp). Also what he tried to tell you was same, that you were having the member profileList inside your GET handler, but not inside the POST handler, where as once the form was to be submitted, it was using the POST handler action, so there was a mismatch between the ViewBags and thus caused this problem. That is why he suggested that you use a Model.

                The shit I complain about It's like there ain't a cloud in the sky and it's raining out - Eminem ~! Firewall !~

                1 Reply Last reply
                0
                • R RajeeshMenoth

                  Try this .. ASP.NET MVC Tutorial - For Beginners & Professionals or Getting Started with ASP.NET MVC 5

                  F Offline
                  F Offline
                  Frygreen
                  wrote on last edited by
                  #8

                  Thanks a lot for these very helpfull information. Much better than what I found so far I have another one :-) The views I found in many examples contain more or less a lot of html-code. Is is possible to use a kind of "graphical html-designer" to create this native code automatically?

                  J 1 Reply Last reply
                  0
                  • F Frygreen

                    Thanks a lot for these very helpfull information. Much better than what I found so far I have another one :-) The views I found in many examples contain more or less a lot of html-code. Is is possible to use a kind of "graphical html-designer" to create this native code automatically?

                    J Offline
                    J Offline
                    jkirkerx
                    wrote on last edited by
                    #9

                    I just learned MVC as well, oh it was painful. Totally different than web forms. I started with one of the generic projects in VS 2013 Community Version, in which a tutorial existed for it. This is one of them Learn MVC (Model View Controller) step by step in 7 days – Day 1[^] So I download the VS2013 Community Version Fired it up, updated the program first. Created a new Project, ASP.Net MVC 4 Web Application, and selected Razor for the HTML in the View Then used package manager and updated all the packages to MVC5 and so forth. From There, it creates a Responsive Design Website with login and register for accounts So I decided to make a new website for myself and learn at the same time. There is a preview, but basically, you write HTML off the top of you head, and just used a browser to test it. The designers are stupid anyways and produce poor results anyways.

                    1 Reply Last reply
                    0
                    • K King Fisher

                      Go with this video tutorial, Its a cool one there might be 100 Clips. https://www.youtube.com/watch?v=-pzwRwYlXMw[^]

                      நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்

                      F Offline
                      F Offline
                      Frygreen
                      wrote on last edited by
                      #10

                      I rarely found such a good training site in my life Thank you very much

                      K 1 Reply Last reply
                      0
                      • F Frygreen

                        I rarely found such a good training site in my life Thank you very much

                        K Offline
                        K Offline
                        King Fisher
                        wrote on last edited by
                        #11

                        you are welcome. :-D

                        நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்

                        1 Reply Last reply
                        0
                        Reply
                        • Reply as topic
                        Log in to reply
                        • Oldest to Newest
                        • Newest to Oldest
                        • Most Votes


                        • Login

                        • Don't have an account? Register

                        • Login or register to search.
                        • First post
                          Last post
                        0
                        • Categories
                        • Recent
                        • Tags
                        • Popular
                        • World
                        • Users
                        • Groups