Absolutely lost with starting asp.net mvc
-
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"?
-
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"?
Go with this video tutorial, Its a cool one there might be 100 Clips. https://www.youtube.com/watch?v=-pzwRwYlXMw[^]
நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்
-
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"?
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 !~
-
Go with this video tutorial, Its a cool one there might be 100 Clips. https://www.youtube.com/watch?v=-pzwRwYlXMw[^]
நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்
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 !~
-
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"?
-
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 !~
ohh.well ,I'm looking forward your answer for my question how to know which button is clicked in mvc[^]
நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்
-
ohh.well ,I'm looking forward your answer for my question how to know which button is clicked in mvc[^]
நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்
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
orSignIn
. 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 memberprofileList
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 !~
-
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?
-
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?
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.
-
Go with this video tutorial, Its a cool one there might be 100 Clips. https://www.youtube.com/watch?v=-pzwRwYlXMw[^]
நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்
-
you are welcome. :-D
நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்