-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- I have version 3.5 beta with Wordpress 2.6.1 and the verse didn't refresh for me either. I deactivated the plugin and changed the line of code that is <code>wp_schedule_event(0, 'daily', ...
- Nice plugin but when I used it the first time it looks... wrong. Than I used firebug on it and found out, that the pathes where wrong, because I have my WP in a subdirectory. I looked into friendfeed-comments.php ...
- Works like a dream. Would it be possible to add the FF likes/comments info on the post summary in wordpress (much like it says how many normal comments are in the post)?
- how lucky you are.. here in my country, only a little area coverage by google map, i build website with google map feature, but not working properly
- How i can show normal comments and Friendfeed comments together like at <a href="http://www.readwriteweb.com/archives/readwriteweb_integrates_friendfeed_comments.php">RWW?</a>
Jump to original thread »
How’s that for an inflammatory title?
Let me prefix this post with a brief disclaimer. I like Microsoft’s .NET platform. C# is a great language to work in, it’s flexible & powerful. Plus, the .NET framewo ... Continue reading »
Let me prefix this post with a brief disclaimer. I like Microsoft’s .NET platform. C# is a great language to work in, it’s flexible & powerful. Plus, the .NET framewo ... Continue reading »
3 months ago
3 months ago
Honestly, I like ASP.NET a lot. The basic templating system, that lets you manipulate the ASP.NET document at the DOM level is fantastic.
The Web Controls, however, are retarded. They make ASP.NET seem like an advanced incarnation of 1990's web construction rather than the kind of modern framework application that good programmers are building in Ruby, PHP, Java and other languages -- it's like they're trying to compete with Cold Fusion, not the living languages that people are using now.
I 'd love to have something that works like Web Controls, but the viewstate concept just isn't compatible with the modern approach that people call MVC: real internet applications need the ability to display different 'views' based on form input and database results -- to carry information through a series of related forms. Viewstate is completely incompatible with that, not to mind the browser back button. Reliable applications keep ~most~ form state in hidden variables, or implement something that has the same semantics: there's a very limited amount of stuff that you can keep in session scope if you want to make apps that really work.
Perhaps Microsoft's MVC framework for ASP.NET will improve the situation, or perhaps somebody will make something that looks a lot like the web controls but that actually works.
3 months ago
2 months ago
And on your point of "you're doing it wrong" by setting the visibility, your blanket statement is not accurate. If the div contains ASP.NET validation controls, you need to set the visible property on the div. If you just change the display style, you'll end up with a validation control hidden but preventing (possibly) the page from being posted. That's a very bad and confusing thing.