webdev_hb

Stories submitted by webdev_hb

WebControls in MVC – Part 2 of ???(somewebguy.wordpress.com)

submitted by webdev_hbwebdev_hb(110) 2 years, 9 months ago

If you've invested a lot of time or money into WebControls then you might hesitate to use the new MVC framework for ASP.NET. However, using WebControls inline with MVC isn't impossible and in post we talk about how to perform simple postbacks and actually make them work! read more...

add a comment |category: |Views: 20

tags: another

Include Stylesheets and Scripts From A WebControl In MVC(somewebguy.wordpress.com)

submitted by webdev_hbwebdev_hb(110) 2 years, 9 months ago

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. read more...

add a comment |category: |Views: 5

tags: another

Dude, For Real -- Encrypt Your Web.Config(somewebguy.wordpress.com)

submitted by webdev_hbwebdev_hb(110) 2 years, 10 months ago

Web.config encryption appears to be a point of contention in the web community -- to which I say -- 'Dude, for real -- just encrypt your stinkin' web.config' -- And in this post I explain why. read more...

add a comment |category: |Views: 27

tags: another

Encrypt Your Web.config, Please(somewebguy.wordpress.com)

submitted by webdev_hbwebdev_hb(110) 2 years, 10 months ago

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! read more...

add a comment |category: |Views: 38

tags: another

The Mystery Being 'Yield Return'(somewebguy.wordpress.com)

submitted by webdev_hbwebdev_hb(110) 2 years, 10 months ago

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. read more...

add a comment |category: |Views: 15

tags: another

Simulate Threading Using Javascript(somewebguy.wordpress.com)

submitted by webdev_hbwebdev_hb(110) 2 years, 10 months ago

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'. read more...

1 comment |category: |Views: 10

tags: another

http://somewebguy.wordpress.com/2009/07/08/jlinq-screencast-2-creating(somewebguy.wordpress.com)

submitted by webdev_hbwebdev_hb(110) 2 years, 10 months ago

jLinq is a Javascript library that allows you to do LINQ style queries with JSON data. Did you know that jLinq let’s you extend the base library with your own methods? Did you realize that any method you create plugs right in and works with the built in jLinq features? This screencast goes over some of the basics to creating your first extension method for jLinq. read more...

add a comment |category: |Views: 0

tags: another

C# And Accepting Parameters(somewebguy.wordpress.com)

submitted by webdev_hbwebdev_hb(110) 2 years, 10 months ago

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. read more...

add a comment |category: |Views: 7

tags: another

Testing Your Javascript(somewebguy.wordpress.com)

submitted by webdev_hbwebdev_hb(110) 2 years, 10 months ago

TDD is becoming a very popular way to verify the integrity of your applications. In my opinion, Dynamic languages, like Javascript, benefit more from TDD than other languages as they can easily be modified at any time. This post discusses creating a simple test suite using Javascript. read more...

add a comment |category: |Views: 4

tags: another

jLinq Screencast #1 – Getting Started With jLinq(somewebguy.wordpress.com)

submitted by webdev_hbwebdev_hb(110) 2 years, 10 months ago

Episode on learning jLinq - Javascript/Json Query Language has been posted! This video goes over the basics of using jLinq and explains some of the cool features behind the way jLinq works. read more...

add a comment |category: |Views: 9

tags: another

jLinq (Linq for Javascript) 2.2.0 Released!(somewebguy.wordpress.com)

submitted by webdev_hbwebdev_hb(110) 2 years, 10 months ago

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! read more...

add a comment |category: |Views: 24

tags: another

More jQuery Magic – Search Highlighting(somewebguy.wordpress.com)

submitted by webdev_hbwebdev_hb(110) 2 years, 11 months ago

jQuery let's you do some really cool things in very few lines of code. In this post we go over emulating browser search highlighting that you find in most modern browsers -- all with jQuery, some Regular Expressions and a whole lot of dumb-luck! read more...

add a comment |category: |Views: 21

tags: another

WebForms And MVC In Harmony — Almost…(somewebguy.wordpress.com)

submitted by webdev_hbwebdev_hb(110) 2 years, 11 months ago

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. read more...

add a comment |category: |Views: 15

tags: another

Complete Control Over Your Webforms Output(somewebguy.wordpress.com)

submitted by webdev_hbwebdev_hb(110) 2 years, 11 months ago

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 client. read more...

add a comment |category: |Views: 10

tags: another