Community Page
- www.emadibrahim.com Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- Thanks a lot.It works also with SQL Server 2008 Express and NetworkService instead of LocalSystem.
- There is another validation toolkit called Validator Toolkit for ASP.NET on Codeplex.com. See http://www.codeplex.com/MvcValidatorToolkit
- Is that a compile error or runtime error? Did you copy & paste the code correctly? Sometimes the browser messes up the code formatting. Other than that you should add a breakpoint and examine...
- Hi Emad I just tried your code, but it is throwing me an error at this part: var x = (from result in resultXml.Descendants("nodeKeyVal") ... It tells me : error CS1026: ) expected Do you...
- Sorry, but the last time I used c++ was in college :)
Jump to original thread »
I am trying to create a decision flowchart for my ASP.NET MVC book and wanted to get some community feedback. Does this diagram make sense? What other factors should one consider that should make it into the chart?
Things to Note
I have tried to use the general co ... Continue reading »
Things to Note
I have tried to use the general co ... Continue reading »
10 months ago
So the port previous to this one RAD! is much coverring for faster development that will include such data driven scenarios.
That was just my idea. I see the 3rd node is a bit confusing.
9 months ago
You can pretty much create a sortable, pageable and editable grid in webforms by simply dragging a table from your database into your webform...
9 months ago
Need to use a flowchart to decide which approach to use?
No:
Great, you seem qualified to be the lead on this project
Yes:
Best stick to whichever methodology you know best
Seriously though, maybe these would just be better as a small list of pros and cons for each approach, leaving it to the readers good sense to decide what to do with that information
9 months ago
But I do also have a list of "strengths" of both frameworks... Do you have other suggestions or anything else that you think should be in the list below?
MVC Strengths
1. Absolute control over rendered HTML
2. No ViewState
3. No PostBack
4. Clean separation of responsibility (Model, View, Controller)
5. Better suited for TDD
6. Steeper learning curve (might depend on your background)
Web Forms Strengths
1. Better suited for Rapid Application Development (RAD)
2. A plethora of third party controls and tools
3. Better integration with the IDE (Visual Studio 2008)
4. Abstraction of low level layers (HTML, CSS, JavaScript)
9 months ago
If you do decide you want to deviate from the well trodden path then I find that the amount of code that is required to perform simple tasks (if done in MVC) can seem disproportionate.
For example to add a hidden field per row in a repeater and bind a value to it requires the on_row_databinding (close?) to be used and the control found in the control tree before a value can be assigned to it. Some things just feel more complex than they need to be if you understand the what is really happening behind the webforms facade
9 months ago
9 months ago
http://www.strong-point.com/Blogs/tabid/87/Entr...
http://www.strong-point.com/Blogs/tabid/87/Entr...
http://pro-thoughts.blogspot.com/2008/09/custom...
8 months ago
Anyway, for cleaner generated HTML there are workarounds to (partially) achieve this with Web forms as well, such as the ASP.NET 2.0 CSS Friendly Control adapters ( http://www.asp.net/CssAdapters/ ). I just installed them a few days ago and they seem to work great.
6 months ago
As you are a visual person, please see if that makes things clearer for the normal guy.
Cheers.
6 months ago
2 months ago
There are even client-side validation frameworks for ASP.NET MVC (xVal for instance). So lots of form validation would actually be a reason to use MVC.