Static Reflection in .NET

LINQ expressions have proven to be extremely versatile, popping up in all sorts of areas. “Static Reflection” seem to be the latest hype. But what is static reflection anyway, and why is it good or why is it bad?

Reflection is used to obtain information about the code you are executing, and to use that information to interact with the code dynamically. Sometimes reflection is used to interact dynamically with code that is statically known by a program already. For example, data binding heavily relies on reflection to dynamically read and write properties. The calling program knows about those properties statically, but the data binding libraries do not. In data binding, object properties are often identified by their name, expressed as a string. That string is then used by the libraries to construct a PropertyInfo object.

Time for an example. Given this class:

public class Example
{
    public string Description { get; set; }
}


You can obtain a PropertyInfo object describing the Description property as follows:

PropertyInfo pi = typeof(Example).GetProperty("Description");


We may have an issue here. If I make a typing mistake in the GetProperty call, I don’t get a compiler error. At runtime, the call will return null, probably leading to a NullReferenceException down the road. And of course, Visual Studio Intellisense will not help me to type it right. Also, if I rename the property, for example to “Summary”, the GetProperty call will be broken, without a compile-time error. Static Reflection is one technique to avoid these issues.

Using LINQ expressions, we could create an API that allows us to do something like the following:

PropertyInfo pi = StaticReflector.GetProperty(Example e => e.Description);


The downside of this approach is that it doesn’t work with anonymous types. So I propose a different mechanism. What we need is something that statically gives us access to a type. Any generic interface will do. I propose the following:

public interface IStaticReflector<T>
{
}


Given this interface, we can define a series of extension methods, for example:

public static class StaticReflectorExtensions
{
    public static PropertyInfo PropertyInfo<T, U>(this IStaticReflector<T> obj, Expression<Func<T, U>> selector)
    {
        var body = selector.Body as MemberExpression;
        return body.Member as PropertyInfo;
    }
}


Notice how the obj parameter is not really used in the PropertyInfo method. It does serve a purpose however: it allows us to use type inference on the type T, and I get full Intellisense. For example:

IStaticReflector<Example> reflector = null;
PropertyInfo pi = reflector.PropertyInfo(e => e.Description);


Granted, initializing a variable to null and then calling a method on it is a bit weird. We need a more elegant way to create these things:

public static class StaticReflector
{
    public static IStaticReflector<T> Create<T>()
    {
        return null;
    }
}


Now we can write:

PropertyInfo pi = StaticReflector.Create<Example>().PropertyInfo(e => e.Description);


This still doesn’t work on anonymous types though. For those, we could use the following:

public static class ObjectExtensions
{
    public static IStaticReflector<T> GetReflector<T>(this T obj)
    {
        return null;
    }
}


Now we can write things such as:

var anonymous = new { Description = "Example" };

PropertyInfo pi = anonymous.GetReflector().PropertyInfo(e => e.Description);


I do prefer the StaticReflector.Create<T>() method is case the type name is known though.

Are we done? Not really. Let’s go back to dynamic reflection using string names. Lot’s of things could go wrong there, and we don’t get any warnings. The situation has not gone worse, but still lot’s of things can go wrong. So the PropertyInfo method needs some parameter validation. Also, properties certainly aren’t the only thing we can reflect upon. What about fields, methods and constructors? Here’s a full implementation:

using System;
using System.Linq.Expressions;
using System.Reflection;

public static class StaticReflectorExtensions
{
    public static PropertyInfo PropertyInfo<T, U>(this IStaticReflector<T> obj, Expression<Func<T, U>> selector)
    {
        if (selector == null)
        {
            throw new ArgumentNullException(Strings.Selector);
        }

        PropertyInfo pi = obj.MemberInfo(selector) as PropertyInfo;

        if (pi == null)
        {
            throw new ArgumentException(Strings.InvalidPropertySelector, Strings.Selector);
        }

        return pi;
    }

    public static FieldInfo FieldInfo<T, U>(this IStaticReflector<T> obj, Expression<Func<T, U>> selector)
    {
        if (selector == null)
        {
            throw new ArgumentNullException(Strings.Selector);
        }

        FieldInfo fi = obj.MemberInfo(selector) as FieldInfo;

        if (fi == null)
        {
            throw new ArgumentException(Strings.InvalidFieldSelector, Strings.Selector);
        }

        return fi;
    }

    public static MemberInfo MemberInfo<T, U>(this IStaticReflector<T> obj, Expression<Func<T, U>> selector)
    {
        if (selector == null)
        {
            throw new ArgumentNullException(Strings.Selector);
        }

        var body = selector.Body as MemberExpression;

        if (body == null)
        {
            throw new ArgumentException(Strings.InvalidMemberSelector, Strings.Selector);
        }

        if (body.Expression.NodeType != ExpressionType.Parameter)
        {
            throw new ArgumentException(Strings.InvalidMemberSelector, Strings.Selector);
        }

        return body.Member;
    }

    public static MethodInfo MethodInfo<T, U>(this IStaticReflector<T> obj, Expression<Func<T, U>> selector)
    {
        if (selector == null)
        {
            throw new ArgumentNullException(Strings.Selector);
        }

        var body = selector.Body as MethodCallExpression;

        if (body == null)
        {
            throw new ArgumentException(Strings.InvalidMethodSelector, Strings.Selector);
        }

        // instance methods must be called on the parameter
        if (body.Object != null && body.Object.NodeType != ExpressionType.Parameter)
        {
            throw new ArgumentException(Strings.InvalidMethodSelector, Strings.Selector);
        }

        // static methods must be defined in the type of the parameter or a base type
        if (body.Object == null && !body.Method.DeclaringType.IsAssignableFrom(typeof(T)))
        {
            throw new ArgumentException(Strings.InvalidMethodSelector, Strings.Selector);
        }

        return body.Method;
    }

    public static MethodInfo MethodInfo<T>(this IStaticReflector<T> obj, Expression<Action<T>> selector)
    {
        if (selector == null)
        {
            throw new ArgumentNullException(Strings.Selector);
        }

        var body = selector.Body as MethodCallExpression;

        if (body == null)
        {
            throw new ArgumentException(Strings.InvalidMethodSelector, Strings.Selector);
        }

        // instance methods must be called on the parameter
        if (body.Object != null && body.Object.NodeType != ExpressionType.Parameter)
        {
            throw new ArgumentException(Strings.InvalidMethodSelector, Strings.Selector);
        }

        // static methods must be defined in the type of the parameter or a base type
        if (body.Object == null && !body.Method.DeclaringType.IsAssignableFrom(typeof(T)))
        {
            throw new ArgumentException(Strings.InvalidMethodSelector, Strings.Selector);
        }

        return body.Method;
    }

    public static ConstructorInfo ConstructorInfo<T>(this IStaticReflector<T> obj, Expression<Func<T>> selector)
    {
        if (selector == null)
        {
            throw new ArgumentNullException(Strings.Selector);
        }

        var body = selector.Body as NewExpression;

        if (body == null)
        {
            throw new ArgumentException(Strings.InvalidConstructorSelector, Strings.Selector);
        }

        return body.Constructor;
    }

    private static class Strings
    {
        internal const string InvalidFieldSelector = "Invalid field selector";
        internal const string InvalidPropertySelector = "Invalid property selector";
        internal const string InvalidMemberSelector = "Invalid member selector";
        internal const string InvalidMethodSelector = "Invalid method selector";
        internal const string InvalidConstructorSelector = "Invalid constructor selector";
        internal const string Selector = "selector";
    }
}


Next time, we’ll talk about the disadvantages of this approach, and we’ll look at an alternative.


Comments

January 4. 2010 06:15 PM

portland dui lawyer

Nice information, many thanks to the author. It is incomprehensible to me now, but in general, the usefulness and significance is overwhelming. Thanks again and good luck!

portland dui lawyer

January 6. 2010 01:26 AM

fat loss 4 idiots

I wanted to thank you for this great read!! I definitely enjoying every little bit of it I have you bookmarked to check out new stuff you post

fat loss 4 idiots

January 6. 2010 01:39 AM

tatuaggi

I completely agree with the above comment, the internet is with a doubt growing into the most important medium of communication across the globe and its due to sites like this that ideas are spreading so quickly.

tatuaggi

January 8. 2010 09:34 AM

getting pregnant fast

While this subject can be very touchy for most people, my opinion is that there has to be a middle or common ground that we all can find. I do appreciate that youve added relevant and intelligent commentary here though. Thank you!

getting pregnant fast

January 8. 2010 09:17 PM

zodiac love matches

The beauty of these blogging engines and CMS platforms is the lack of limitations and ease of manipulation that allows developers to implement rich content and 'skin' the site in such a way that with very little effort one would never notice what it is making the site tick all without limiting content and effectiveness.

zodiac love matches

January 8. 2010 09:24 PM

how to prevent panic attacks

Keep 'em coming... you all do such a great job at such Concepts... can't tell you how much I, for one appreciate all you do!

how to prevent panic attacks

January 8. 2010 10:46 PM

pro bono attorney

I completely agree with the above comment, the internet is with a doubt growing into the most important medium of communication across the globe and its due to sites like this that ideas are spreading so quickly.

pro bono attorney

January 12. 2010 01:36 AM

safety training

Nice information, many thanks to the author. It is incomprehensible to me now, but in general, the usefulness and significance is overwhelming. Thanks again and good luck!

safety training

January 12. 2010 02:38 PM

offshore banking unit

I admire what you have done here. I like the part where you say you are doing this to give back but I would assume by all the comments that this is working for you as well.

offshore banking unit

January 12. 2010 03:27 PM

wedding dresses

can't tell you how much I, for one appreciate all you do!

wedding dresses

January 12. 2010 04:04 PM

offshore registration

Admiring the time and effort you put into your blog and detailed information you offer! I will bookmark your blog and have my children check up here often. Thumbs up!

offshore registration

January 14. 2010 09:51 PM

diet pill that work

Thanks for taking the time to discuss this, I feel strongly about it and love learning more on this topic. If possible, as you gain expertise, would you mind updating your blog with more information? It is extremely helpful for me.

diet pill that work

January 14. 2010 10:55 PM

usdbot

Aw, this was a really quality post. In theory I'd like to write like this too - taking time and real effort to make a good article... but what can I say... I procrastinate alot and never seem to get something done.

usdbot

January 15. 2010 03:32 AM

refinancing mortgage bad credit

When I originally commented I clicked the "Notify me when new comments are added" checkbox and now each time a comment is added I get four emails with the same comment.
Is there any way you can remove me from that service?
Thanks!

refinancing mortgage bad credit

January 15. 2010 03:45 AM

out of body experience

I admire what you have done here. I like the part where you say you are doing this to give back but I would assume by all the comments that this is working for you as well.

out of body experience

January 15. 2010 03:57 AM

portable shortwave receivers

Have you ever considered adding more videos to your blog posts to keep the readers more entertained? I mean I just read through the entire article of yours and it was quite good but since I'm more of a visual learner,I found that to be more helpful well let me know how it turns out! I love what you guys are always up too. Such clever work and reporting! Keep up the great works guys I've added you guys to my blogroll. This is a great article thanks for sharing this informative information.. I will visit your blog regularly for some latest post.

portable shortwave receivers

January 15. 2010 09:39 AM

Save Money

Well, I just wanted to let you know that it?s not showing up properly on the Blackberry Browser (I've got a Pearl). Anyway, I?m now on the RSS feed on my laptop especially to take a look here, great info!

Save Money

January 18. 2010 08:05 PM

auto insurance cincinnati

Hrmm that was weird, my comment got eaten. Anyway I wanted to say that it's nice to know that someone else also mentioned this as I had trouble finding the same info elsewhere. This was the first place that told me the answer. Thanks.

auto insurance cincinnati

January 18. 2010 08:09 PM

sarasota real estate

Took me time to read all the comments, but I really enjoyed the article. It proved to be Very helpful to me and I am sure to all the commenters here! It's always nice when you can not only be informed, but also entertained! I'm sure you had fun writing this article.

sarasota real estate

January 19. 2010 11:07 PM

Best Electronic Cigarette Reviews

This blog is very educative,the  posts are also educative too.
thanks very much,I will tell my friends about it

Best Electronic Cigarette Reviews

January 22. 2010 09:01 PM

payday loans

There is joy in work. There is no happiness except in the realization that we have accomplished something.

payday loans

January 22. 2010 11:08 PM

auto insurance

The beauty of these blogging engines and CMS platforms is the lack of limitations and ease of manipulation that allows developers to implement rich content and 'skin' the site in such a way that with very little effort one would never notice what it is making the site tick all without limiting content and effectiveness.

auto insurance

January 23. 2010 04:33 AM

tanden bleken

I admit, I have not been on this webpage in a long time... however it was another joy to see It is such an important topic and ignored by so many, even professionals. I thank you to help making people more aware of possible issues.
Great stuff as usual...

tanden bleken

January 23. 2010 08:21 PM

britt borden john h stroger jr hospital

This is my first time i visit here. I found so many interesting stuff in your blog especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all the enjoyment here! keep up the good work.

britt borden john h stroger jr hospital

January 23. 2010 09:01 PM

closet shoe organizer

I admit, I have not been on this webpage in a long time... however it was another joy to see It is such an important topic and ignored by so many, even professionals. I thank you to help making people more aware of possible issues.
Great stuff as usual...

closet shoe organizer

January 23. 2010 10:13 PM

britt borden john h stroger jr hospital

I admit, I have not been on this webpage in a long time... however it was another joy to see It is such an important topic and ignored by so many, even professionals. I thank you to help making people more aware of possible issues.
Great stuff as usual...

britt borden john h stroger jr hospital

January 24. 2010 11:40 PM

sugar baby dating

That is some inspirational stuff. Never knew that opinions could be this varied. Thanks for all the enthusiasm to offer such helpful information here.

sugar baby dating

January 25. 2010 06:14 AM

NJ Website Design

Hey - nice blog, just looking around some blogs, seems a pretty nice platform you are using. I'm currently using Wordpress for a few of my sites but looking to change one of them over to a platform similar to yours as a trial run. Anything in particular you would recommend about it?

NJ Website Design

January 25. 2010 02:01 PM

payday loans

The great leaders are like the best conductors - they reach beyond the notes to reach the magic in the players.

payday loans

January 27. 2010 01:28 AM

Florist Thailand

I must say that overall I am really impressed with this blog.It is easy to see that you are passionate about your writing. If only I had your writing ability I look forward to more updates and will be returning.

Florist Thailand

January 27. 2010 01:54 AM

beer tshirts

I wanted to thank you for this great read!! I definitely enjoying every little bit of it I have you bookmarked to check out new stuff you post

beer tshirts

January 27. 2010 03:21 AM

glass fireplace doors

I have recently started using the blogengine.net and I having some problems here? in your blog you stated that we need to enable write permissions on the App_Data folder...unfortunately I don't understand how to enable it.

glass fireplace doors

January 27. 2010 09:13 PM

va refinance

Thanks for the post. Keep the great work.

va refinance

January 30. 2010 12:26 AM

contractor accountants

Valuable information and excellent design you got here! I would like to thank you for sharing your thoughts and time into the stuff you post!! Thumbs up

contractor accountants

January 30. 2010 02:28 AM

billig internet

This article gives the light in which we can observe the reality. this is very nice one and gives indepth information. thanks for this nice article

billig internet

January 31. 2010 11:49 AM

hoekbank

That is some inspirational stuff. Never knew that opinions could be this varied. Thanks for all the enthusiasm to offer such helpful information here.

hoekbank

January 31. 2010 04:59 PM

Home Improvement

There are certainly a lot of details like that to take into consideration. That is a great point to bring up. I offer the thoughts above as general inspiration but clearly there are questions like the one you bring up where the most important thing will be working in honest good faith. I don?t know if best practices have emerged around things like that, but I am sure that your job is clearly identified as a fair game.

Home Improvement

January 31. 2010 09:02 PM

hoekbanken

Me and my friend were arguing about an issue similar to this! Now I know that I was right. lol! Thanks for the information you post.

hoekbanken

January 31. 2010 09:02 PM

RC Hobby Shop

Hrmm that was weird, my comment got eaten. Anyway I wanted to say that it's nice to know that someone else also mentioned this as I had trouble finding the same info elsewhere. This was the first place that told me the answer. Thanks.

RC Hobby Shop

February 1. 2010 06:32 PM

investment club accounting software

When I originally commented I clicked the "Notify me when new comments are added" checkbox and now each time a comment is added I get four emails with the same comment.
Is there any way you can remove me from that service?
Thanks!

investment club accounting software

February 2. 2010 03:03 AM

data backup

Hello,I love reading through your blog, I wanted to leave a little comment to support you and wish you a good continuation. Wishing you the best of luck for all your blogging efforts.

data backup

February 3. 2010 03:46 PM

cash loans

Creativity is to think more efficiently.

cash loans

February 3. 2010 03:46 PM

loans

Pleasure in the job puts perfection in the work.

loans

February 3. 2010 03:46 PM

cash loans

Books, like friends, should be few, and well chosen.

cash loans

February 3. 2010 03:46 PM

cash advance

You always pass failure on the way to success.

cash advance

February 3. 2010 03:46 PM

payday loans

All men's gains are the fruit of venturing.

payday loans

February 3. 2010 04:01 PM

cash loans

Every business is built on friendship.

cash loans

February 3. 2010 04:01 PM

payday loans

To do something, however small, to make others happier and better, is the highest ambition, the most elevating hope, which can inspire a human being.

payday loans

February 3. 2010 04:02 PM

cash loans

To acquire knowledge, one must study; but to acquire wisdom, one must observe.

cash loans

February 4. 2010 11:15 PM

online personal loans

Positive thinking won't let you do anything but it will let you do everything better than negative thinking will.

online personal loans

February 4. 2010 11:15 PM

bad credit personal loans

The magic formula that successful businesses have discovered is to treat customers like guests and employees like people.

bad credit personal loans

February 4. 2010 11:15 PM

no credit check payday loans

I consider a goal as a journey rather than a destination. And each year I set a new goal

no credit check payday loans

February 4. 2010 11:16 PM

faxless payday loans

When you're taking care of the customer, you can never do too much. And there is no wrong way... if it comes from the heart.

faxless payday loans

February 4. 2010 11:16 PM

usa payday loans

We must have a theme, a goal, a purpose in our lives.

usa payday loans

February 4. 2010 11:31 PM

no fax payday loans

Choose a job you love, and you will never have to work a day in your life.

no fax payday loans

February 4. 2010 11:31 PM

faxless payday loans

Power is the ability to do good things for others.

faxless payday loans

February 4. 2010 11:31 PM

no fax personal loans

It is a rough road that leads to the heights of greatness.

no fax personal loans

February 5. 2010 02:02 PM

boise homes

Excellent read, I just passed this onto a colleague who was doing a little research on that. And he actually bought me lunch because I found it for him smile So let me rephrase that: Thanks for lunch!

boise homes

February 6. 2010 09:45 PM

how to tie a tie

I would like to thank you for the efforts you have made in writing this article. I am hoping the same best work from you in the future as well. In fact your creative writing abilities has inspired me to start my own BlogEngine blog now. Really the bloggin

how to tie a tie

February 8. 2010 01:41 AM

golf gps units

Hi. this is kind of an "unconventional" question , but have other visitors asked you how get the menu bar to look like you've got it? I also have a blog and am really looking to alter around the theme, however am scared to death to mess with it for fear of the search engines punishing me. I am very new to all of this ...so i am just not positive exactly how to try to to it all yet. I'll just keep working on it one day at a time.

golf gps units

February 8. 2010 01:01 PM

credit card factoring

I was very pleased to find this site.I wanted to thank you for this great read!! I definitely enjoying every little bit of it and I have you bookmarked to check out new stuff you post.

credit card factoring

February 8. 2010 01:04 PM

pheromone perfume

Hello,I love reading through your blog, I wanted to leave a little comment to support you and wish you a good continuation. Wishing you the best of luck for all your blogging efforts.

pheromone perfume

February 8. 2010 05:02 PM

european river cruises

This is such a great resource that you are providing and you give it away for free. I love seeing websites that understand the value of providing a quality resource for free. It is the old what goes around comes around routine. Did you acquired lots of links and I see lots of trackbacks??

european river cruises

February 8. 2010 05:11 PM

fitness upright exercise bike

Have you ever considered adding more videos to your blog posts to keep the readers more entertained? I mean I just read through the entire article of yours and it was quite good but since I'm more of a visual learner,I found that to be more helpful well let me know how it turns out! I love what you guys are always up too. Such clever work and reporting! Keep up the great works guys I've added you guys to my blogroll. This is a great article thanks for sharing this informative information.. I will visit your blog regularly for some latest post.

fitness upright exercise bike

February 9. 2010 08:59 AM

acai berry review

For what is the best choice, for each individual is the highest it is possible for him to achieve.

acai berry review

February 9. 2010 08:59 AM

acai health

All my life I've wanted to be somebody. But I see now I should have been more specific.

acai health

February 9. 2010 08:59 AM

acai berry

When you discover your mission, you will feel its demand. It will fill you with enthusiasm and a burning desire to get to work on it.

acai berry

February 9. 2010 08:59 AM

lifestyle

Power is the ability to do good things for others.

lifestyle

February 9. 2010 08:59 AM

life

When sorrows come, they come not single spies, but in battalions.

life

February 9. 2010 09:24 AM

acai berry select

The best is yet to be.

acai berry select

February 9. 2010 09:24 AM

acai lose weight

A business has to be involving, it has to be fun, and it has to exercise your creative instincts.

acai lose weight

February 9. 2010 09:24 AM

acai berry lose weight

It is not so important who starts the game but who finishes it.

acai berry lose weight

February 9. 2010 11:27 PM

best umbrella company

Do you accept guest posts? I would love to write couple articles here.
I was wondering what is up with that weird gravatar??? I know 5am is early and I'm not looking my best at that hour, but I hope I don't look like this! I might however make that face if I'm asked to do 100 pushups. lol

best umbrella company

February 13. 2010 05:13 AM

mafia wars cheats

Great post! I am just starting out in community management/marketing media and trying to learn how to do it well - resources like this article are incredibly helpful. As our company is based in the US, it?s all a bit new to us. The example above is something that I worry about as well, how to show your own genuine enthusiasm and share the fact that your product is useful in that case.

mafia wars cheats

February 13. 2010 06:03 AM

Farragut Garage Door Repair

I was wondering what is up with that weird gravatar??? I know 5am is early and I'm not looking my best at that hour, but I hope I don't look like this! I might however make that face if I'm asked to do 100 pushups. lol

Farragut Garage Door Repair

February 13. 2010 06:57 AM

no loss robot

Thanks for taking the time to discuss this, I feel strongly about it and love learning more on this topic. If possible, as you gain expertise, would you mind updating your blog with more information? It is extremely helpful for me.

no loss robot

February 13. 2010 07:16 AM

early reading

Me and my friend were arguing about an issue similar to this! Now I know that I was right. lol! Thanks for the information you post.

early reading

February 13. 2010 12:30 PM

Uxbridge Garage Door Repair

Aw, this was a really quality post. In theory I'd like to write like this too - taking time and real effort to make a good article... but what can I say... I procrastinate alot and never seem to get something done.

Uxbridge Garage Door Repair

February 13. 2010 11:44 PM

Newport Beach Garage Door Repair

The beauty of these blogging engines and CMS platforms is the lack of limitations and ease of manipulation that allows developers to implement rich content and 'skin' the site in such a way that with very little effort one would never notice what it is making the site tick all without limiting content and effectiveness.

Newport Beach Garage Door Repair

February 14. 2010 02:02 PM

cuisinart fondue

Hi webmaster, commenters and everybody else !!! The blog was absolutely fantastic! Lots of great information and inspiration, both of which we all need!b Keep 'em coming... you all do such a great job at such Concepts... can't tell you how much I, for one appreciate all you do!

cuisinart fondue

February 15. 2010 03:15 PM

acnezine

I admit, I have not been on this webpage in a long time... however it was another joy to see It is such an important topic and ignored by so many, even professionals. I thank you to help making people more aware of possible issues.
Great stuff as usual...

acnezine

February 16. 2010 12:21 PM

contemporary duvet covers

Pretty good post. I just stumbled upon your blog and wanted to say that I have really enjoyed reading your blog posts. Any way I'll be subscribing to your feed and I hope you post again soon.

contemporary duvet covers

February 17. 2010 04:30 PM

hot latina girls

That is some inspirational stuff. Never knew that opinions could be this varied. Thanks for all the enthusiasm to offer such helpful information here.

hot latina girls

February 18. 2010 11:10 PM

Samples of Beauty Products

I am not much of a guy who thinks in so deeply about web design but I think your post had some valid points in it. Like designers are forced to design stuff within the limited code available and not go beyond it, their innovation is somewhat limited but still I think Web Design won't die! I agree that Amazon and other some big sites won't have a blog but now a days it's very important to have some sort of option available so people can quickly communicate their thoughts. I think Amazon if wants to shift it to that, they can get a customized CMS for themselves.

Samples of Beauty Products

February 19. 2010 12:02 AM

paranormal videos

I admit, I have not been on this webpage in a long time... however it was another joy to see It is such an important topic and ignored by so many, even professionals. I thank you to help making people more aware of possible issues.
Great stuff as usual...

paranormal videos

February 21. 2010 05:45 PM

 affordable dental plans 

Do you just paste the code in the blog or you use Filezilla to upload it Smile

affordable dental plans 

February 22. 2010 12:46 AM

Mother's Day 2010

Me and my friend were arguing about an issue similar to this! Now I know that I was right. lol! Thanks for the information you post.

Mother's Day 2010

February 22. 2010 02:28 AM

chiropractic marketing

Have you ever considered adding more videos to your blog posts to keep the readers more entertained? I mean I just read through the entire article of yours and it was quite good but since I'm more of a visual learner,I found that to be more helpful well let me know how it turns out! I love what you guys are always up too. Such clever work and reporting! Keep up the great works guys I've added you guys to my blogroll. This is a great article thanks for sharing this informative information.. I will visit your blog regularly for some latest post.

chiropractic marketing

February 23. 2010 01:14 AM

commercial coffee grinder

I admire the valuable information you offer in your articles. I will bookmark your blog and have my children check up here often. I am quite sure they will learn lots of new stuff here than anybody else!

commercial coffee grinder

February 23. 2010 01:51 AM

no loss robot

This is my first time i visit here. I found so many interesting stuff in your blog especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all the enjoyment here! keep up the good work.

no loss robot

February 23. 2010 11:17 PM

make money online

I admire what you have done here. I like the part where you say you are doing this to give back but I would assume by all the comments that this is working for you as well.

make money online

February 24. 2010 03:14 AM

eCover Action Graphics

I have recently started using the blogengine.net and I having some problems here? in your blog you stated that we need to enable write permissions on the App_Data folder...unfortunately I don't understand how to enable it.

eCover Action Graphics

February 25. 2010 08:49 PM

shop a lu

Nice information, many thanks to the author. It is incomprehensible to me now, but in general, the usefulness and significance is overwhelming. Thanks again and good luck!

shop a lu

February 25. 2010 10:00 PM

electronic cigarette

Just wanted to give you a shout from the valley of the sun, great information. Much appreciated.

electronic cigarette

February 26. 2010 02:11 AM

Wealthy Affiliate Scam

I was wondering what is up with that weird gravatar??? I know 5am is early and I'm not looking my best at that hour, but I hope I don't look like this! I might however make that face if I'm asked to do 100 pushups. lol

Wealthy Affiliate Scam

February 28. 2010 01:24 AM

raw food diet recipes

Hi webmaster, commenters and everybody else !!! The blog was absolutely fantastic! Lots of great information and inspiration, both of which we all need!b Keep 'em coming... you all do such a great job at such Concepts... can't tell you how much I, for one appreciate all you do!

raw food diet recipes

February 28. 2010 02:42 AM

Revitol

I was wondering what is up with that weird gravatar??? I know 5am is early and I'm not looking my best at that hour, but I hope I don't look like this! I might however make that face if I'm asked to do 100 pushups. lol

Revitol

February 28. 2010 03:02 AM

Indonesia Java International Destination

This is my first time i visit here. I found so many interesting stuff in your blog especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all the enjoyment here! keep up the good work.

Indonesia Java International Destination

March 1. 2010 01:37 PM

RoweHester

Every one acknowledges that modern life seems to be not very cheap, but people require cash for different stuff and not every person gets big sums cash. So to receive fast <a href="lowest-rate-loans.com/.../personal-loans">personal loans</a> and just financial loan should be a correct solution.

RoweHester

March 2. 2010 12:42 AM

Linkbuilding Tool

Valuable information and excellent design you got here! I would like to thank you for sharing your thoughts and time into the stuff you post!! Thumbs up

Linkbuilding Tool

March 2. 2010 01:09 AM

LARP Weapons

How-do-you-do, just needed you to know I have added your site to my Google bookmarks because of your extraordinary blog layout. But seriously, I think your site has one of the freshest theme I've came across. It really helps make reading your blog a lot easier.

LARP Weapons

March 2. 2010 11:39 PM

how to win back ex

Hey - nice blog, just looking around some blogs, seems a pretty nice platform you are using. I'm currently using Wordpress for a few of my sites but looking to change one of them over to a platform similar to yours as a trial run. Anything in particular you would recommend about it?

how to win back ex

March 2. 2010 11:47 PM

car title loan flagstaff

Do you accept guest posts? I would love to write couple articles here.
I was wondering what is up with that weird gravatar??? I know 5am is early and I'm not looking my best at that hour, but I hope I don't look like this! I might however make that face if I'm asked to do 100 pushups. lol

car title loan flagstaff

March 3. 2010 12:50 AM

Maplewood NJ Plumbing

I admire the valuable information you offer in your articles. I will bookmark your blog and have my children check up here often. I am quite sure they will learn lots of new stuff here than anybody else!

Maplewood NJ Plumbing

March 3. 2010 09:38 PM

roulette strategie

Well, this is my first visit to your blog! We are a group of volunteers and starting a new initiative in a community in the same niche. Your blog provided us valuable information to work on. You have done a marvellous job!

roulette strategie

March 3. 2010 10:47 PM

How To Lose Weight Fast

Me and my friend were arguing about an issue similar to this! Now I know that I was right. lol! Thanks for the information you post.

How To Lose Weight Fast

March 3. 2010 11:15 PM

Mountainside NJ HVAC

The blog was absolutely fantastic! Lots of great information and inspiration, both of which we all need!

Mountainside NJ HVAC

March 5. 2010 06:32 AM

boards

Couldn?t be written any better. Reading this post reminds me of my old room mate! He always kept talking about this. I will forward this article to him. Pretty sure he will have a good read. Thanks for sharing!

boards

March 5. 2010 12:30 PM

boards

Great post! I am just starting out in community management/marketing media and trying to learn how to do it well - resources like this article are incredibly helpful. As our company is based in the US, it?s all a bit new to us. The example above is something that I worry about as well, how to show your own genuine enthusiasm and share the fact that your product is useful in that case.

boards

March 5. 2010 04:00 PM

diet pill reviews

Very valuable and useful post.this is about "Static Reflection” seem to be the latest type.Reflection is used to obtain information about the code you are executing, and to use that information to interact with the code dynamically. Nice information.
Thanks for sharing.

diet pill reviews

March 5. 2010 11:48 PM

boards

I have recently started using the blogengine.net and I having some problems here? in your blog you stated that we need to enable write permissions on the App_Data folder...unfortunately I don't understand how to enable it.

boards

March 6. 2010 05:34 AM

forum

I have recently started using the blogengine.net and I having some problems here? in your blog you stated that we need to enable write permissions on the App_Data folder...unfortunately I don't understand how to enable it.

forum

March 6. 2010 10:48 AM

boards

There are certainly a lot of details like that to take into consideration. That is a great point to bring up. I offer the thoughts above as general inspiration but clearly there are questions like the one you bring up where the most important thing will be working in honest good faith. I don?t know if best practices have emerged around things like that, but I am sure that your job is clearly identified as a fair game.

boards

March 7. 2010 12:37 AM

sauna

Excellent read, I just passed this onto a colleague who was doing a little research on that. And he actually bought me lunch because I found it for him smile So let me rephrase that: Thanks for lunch!

sauna

March 7. 2010 12:52 AM

peg perego aria stroller review

Thanks for taking the time to discuss this, I feel strongly about it and love learning more on this topic. If possible, as you gain expertise, would you mind updating your blog with more information? It is extremely helpful for me.

peg perego aria stroller review

March 8. 2010 01:08 AM

VA Streamline Refinance

Interesting information; you have explained whole code in very simple way; looking for more such stuffs.

its just the information i was looking for. Smile   Thanks mate.

VA Streamline Refinance

March 8. 2010 09:51 AM

Umbrella Companies

There are certainly a lot of details like that to take into consideration. That is a great point to bring up. I offer the thoughts above as general inspiration but clearly there are questions like the one you bring up where the most important thing will be working in honest good faith. I don?t know if best practices have emerged around things like that, but I am sure that your job is clearly identified as a fair game.

Umbrella Companies

March 8. 2010 09:51 AM

Umbrella Companies

There are certainly a lot of details like that to take into consideration. That is a great point to bring up. I offer the thoughts above as general inspiration but clearly there are questions like the one you bring up where the most important thing will be working in honest good faith. I don?t know if best practices have emerged around things like that, but I am sure that your job is clearly identified as a fair game.

Umbrella Companies

March 9. 2010 05:02 AM

Webthesurfi Rugs Webdesign

blog hopping...nice blog

Webthesurfi Rugs Webdesign

March 9. 2010 05:03 AM

Watch Pacquiao Vs Clottey Live online

nice blog i learn a lot from it.
Thanks for sharing.

regards,

rosela

Watch Pacquiao Vs Clottey Live online

March 9. 2010 05:18 AM

Emilie Dearth

This is a superb post, but I was wondering how do I suscribe to the RSS feed?

Emilie Dearth

March 9. 2010 05:18 AM

Billie Ganer

I have read a few of the articles on your website now, and I really like your style of blogging. I added it to my favorites blog list and will be checking back soon. Please check out my site as well and let me know what you think.

Billie Ganer

March 9. 2010 05:37 AM

cinsellik

I was very pleased to find this site.I wanted to thank you for this great read!! I definitely enjoying every little bit of it and I have you bookmarked to check out new stuff you post. Big thanks for the useful info ..

cinsellik

March 10. 2010 12:37 AM

wholesale distributors

I was looking for crucial information on this subject. The information was important as I am about to launch my own portal. Thanks for providing a missing link in my business.

wholesale distributors

March 10. 2010 01:43 AM

Communication Skills

Just wanted to give you a shout from the valley of the sun, great information. Much appreciated.

Communication Skills

March 10. 2010 06:05 AM

arac sorgulama

Interesting post and I really like your take on the issue. I now have a clear idea on what this matter is all about. Thank you so much.

arac sorgulama

March 10. 2010 06:05 AM

arac sorgulama

Interesting post and I really like your take on the issue. I now have a clear idea on what this matter is all about. Thank you so much.

arac sorgulama

March 10. 2010 06:05 AM

arac sorgulama

Interesting post and I really like your take on the issue. I now have a clear idea on what this matter is all about. Thank you so much.

arac sorgulama

March 10. 2010 06:27 AM

portland bankruptcy attorney

Thanks for taking the time to discuss this, I feel strongly about it and love learning more on this topic. If possible, as you gain expertise, would you mind updating your blog with more information? It is extremely helpful for me.

portland bankruptcy attorney

March 10. 2010 07:26 AM

portland dui attorneys

Nice information, many thanks to the author. It is incomprehensible to me now, but in general, the usefulness and significance is overwhelming. Thanks again and good luck!

portland dui attorneys

March 10. 2010 08:13 AM

adwords consultants

This is a really good read for me, Must admit that you are one of the best bloggers I ever saw.Thanks for posting this informative article.

adwords consultants

March 10. 2010 04:13 PM

portland divorce lawyer

The blog was absolutely fantastic! Lots of great information and inspiration, both of which we all need!

portland divorce lawyer

Add comment


(Will show your Gravatar icon)

  Country flag

biuquote
  • Comment
  • Preview
Loading