Click here to Skip to main content
6,631,889 members and growing! (17,745 online)
Email Password   helpLost your password?
Announcements
BullFrog Power
 
Search    
Add to IE Search

Articles by webdev_hb (2 articles found)

Average article rating: 4.54

Client side scripting

jQuery Magic - Creating a Vista Style Password Box
Last Updated: 27 Jul 2009   Page Views: 4,994   Rating: 4.33/5    Votes: 2   Popularity: 1.30   Bookmark Count: 14
Licence: The Creative Commons Attribution-ShareAlike 2.5 License   
Enclosures and jQuery let you do some pretty cool things - like what? How about creating a Vista like 'Toggle Password Visibility' option, all from a single chained command? Nice!

C#

Anonymous Types - Dynamic Programming With C#
Last Updated: 28 Jul 2009   Page Views: 4,072   Rating: 4.20/5    Votes: 5   Popularity: 2.94   Bookmark Count: 26
Licence: The Creative Commons Attribution-ShareAlike 2.5 License   
Anonymous Types are a powerful feature in the .NET language, but are limited when you need to pass that information around. In this post, I discuss a class that I wrote to allow you to work with Anonymous Types easily, even after they leave their initial scope.

ASP.NET

Complete Control Over Your Webforms Output [Technical Blog]
Last Updated: 8 Jul 2009   Page Views: 3,261   Rating: 5.00/5    Votes: 1   Popularity: 0.00   Bookmark Count: 13
Licence: The Creative Commons Attribution-ShareAlike 2.5 License   
ASP.NET generates a lot of junk that some developers would like to remove from their page. By overriding the Render method and using some regular expressions a developer can completely transform the output from their pages. This post explores some ways you can customize the content you send to the c
WebForms And MVC In Harmony — Almost… [Technical Blog]
Last Updated: 7 Aug 2009   Page Views: 4,900   Rating: 4.67/5    Votes: 2   Popularity: 1.40   Bookmark Count: 13
Licence: The Creative Commons Attribution-ShareAlike 2.5 License   
Can't use WebControls in ASP.NET MVC anymore? Not quite. This post discusses some options that you have in MVC for creating "WebControls" by using Extension Methods, IDisposable or a "Super Secret" method.
Keep Your Website Alive (Don’t Let IIS Recycle Your Website)! [Technical Blog]
Last Updated: 19 Aug 2009   Page Views: 5,677   Rating: 4.60/5    Votes: 3   Popularity: 2.19   Bookmark Count: 21
Licence: The Creative Commons Attribution-ShareAlike 2.5 License   
IIS can be a bully to your poor web application and when you're in a hosted environment you have even less control. In this post we discuss how we can keep your website from being recycled and do it without needing external code!
Include Stylesheets and Scripts From A WebControl In MVC [Technical Blog]
Last Updated: 20 Aug 2009   Page Views: 5,816   Rating: 0.0 / 5    Votes: 0   Popularity: 0.0   Bookmark Count: 7
Licence: The Creative Commons Attribution-ShareAlike 2.5 License   
Have you ever created a WebControl in MVC and though “Gee, it sure would be nice if I could add a stylesheet/script to the header of my page.” It’s not as easy as it used to be. This post goes over some code that can help you bridge that gap.
Using WebControls In ASP.NET MVC Views – Part 3 [Technical Blog]
Last Updated: 20 Aug 2009   Page Views: 3,569   Rating: 0.0 / 5    Votes: 0   Popularity: 0.0   Bookmark Count: 8
Licence: The Creative Commons Attribution-ShareAlike 2.5 License   
This post continues the WebControls In Mvc series. In this post we finally get some code that can be downloaded and tested. This post explains how to use the MvcWebForms methods to add WebControls to your Mvc Views -- and make them talk to your Controllers!
Encrypt Your Web.config, Please [Technical Blog]
Last Updated: 16 Jul 2009   Page Views: 9,100   Rating: 3.96/5    Votes: 12   Popularity: 4.27   Bookmark Count: 47
Licence: The Creative Commons Attribution-ShareAlike 2.5 License   
Are you encrypting your web.config files? It's not that hard to do, but in this post, I share a program I wrote to make it as easy as point and click. Now, you can remotely encrypt and decrypt your web.config files without needing to use a command prompt or look up IIS information!

Client side scripting

Simulate Threading Using Javascript [Technical Blog]
Last Updated: 10 Jul 2009   Page Views: 4,183   Rating: 4.20/5    Votes: 5   Popularity: 2.94   Bookmark Count: 12
Licence: The Creative Commons Attribution-ShareAlike 2.5 License   
Large loops in Javascript tend to slow down browsers and cause the user experience to degrade. With the use of enclosures and setTimeout, we can simulate 'threading' and improve the performance of our page. This post explains how to create a simple class to handle 'threading'.
jLinq (LINQ for JSON) Screencast #2 – Creating Your Own Extension Methods [Technical Blog]
Last Updated: 13 Aug 2009   Page Views: 3,275   Rating: 4.67/5    Votes: 2   Popularity: 1.40   Bookmark Count: 7
Licence: The Creative Commons Attribution-ShareAlike 2.5 License   
jLinq (LINQ for JSON) is a completely extensible library that allows you to create your own query methods and attach them to the core library. This screencast goes over some of the basics for creating your first extension method.
jLinq 2.2.0 Released! [Technical Blog]
Last Updated: 13 Aug 2009   Page Views: 6,307   Rating: 5.00/5    Votes: 6   Popularity: 3.89   Bookmark Count: 17
Licence: The Creative Commons Attribution-ShareAlike 2.5 License   
jLinq is a Javascript query language that makes it easy to work with large arrays of information. Today, jLinq 2.2.0 is released which offers new commands, bug fixes and more!

Web Services

Combining Web Services with MVC [Technical Blog]
Last Updated: 29 Sep 2009   Page Views: 2,564   Rating: 4.33/5    Votes: 2   Popularity: 1.30   Bookmark Count: 10
Licence: The Creative Commons Attribution-ShareAlike 2.5 License   
WebServices make for a convenient way to share functionality across many different applications. MVC makes it easy to call methods by using standard HTTP calls. With a little bit of Reflection, you can map an MVC Controller to a Web Service.

.NET Framework

C# And Accepting Parameters [Technical Blog]
Last Updated: 9 Jul 2009   Page Views: 9,211   Rating: 4.15/5    Votes: 12   Popularity: 4.48   Bookmark Count: 23
Licence: The Creative Commons Attribution-ShareAlike 2.5 License   
C# offers a few additional keywords to allow you to accept multiple parameters for a method. This post goes over using the 'params' keyword and the evil '__arglist' keyword.

C#

Enums, Flags, and C# — Oh my! (bad pun…) [Technical Blog]
Last Updated: 3 Sep 2009   Page Views: 12,343   Rating: 4.80/5    Votes: 41   Popularity: 7.75   Bookmark Count: 82
Licence: The Creative Commons Attribution-ShareAlike 2.5 License   
How you can use Enumerated types and the Flag Attribute along with Extension Methods to make your code more compact and easier to understand.
The Mystery Behind ‘Yield Return’ [Technical Blog]
Last Updated: 14 Jul 2009   Page Views: 5,706   Rating: 4.69/5    Votes: 11   Popularity: 4.88   Bookmark Count: 22
Licence: The Creative Commons Attribution-ShareAlike 2.5 License   
If you've ever worked with collections then you may have run across yield return, but unless you mess around with it, you may never know that it is really a very unique way to work with your collections. This post discusses using yield return in your programs.
Build A Smarter Loop With C# [Technical Blog]
Last Updated: 2 Sep 2009   Page Views: 4,161   Rating: 5.00/5    Votes: 1   Popularity: 0.00   Bookmark Count: 15
Licence: The Creative Commons Attribution-ShareAlike 2.5 License   
Loops are a standard item in any programmer's toolbox. But as often as they make their way into our code, you have to wonder why you don't see more improvements to using them. This post discusses some ideas to improve your loops by using Extension Methods.

webdev_hb


Member

Location: United States United States


Last Updated 22 Nov 2009
Web11 | 2.2.0175 | Advertise | Privacy
Copyright © CodeProject, 1999-2009
All Rights Reserved. Terms of Use