Acts as ASP.NET (a Rails Plugin)

Posted 5 months ago by jacques | 60 comments

As a former ASP.NET developer of nearly 5 years, I sometimes find myself really missing some of its unique features after going a year and a half exclusively in the Rails camp. So as of April 1st 2008, I have finally provided a Rails plugin that the world has been waiting for.

# presenting...
acts_as_aspdotnet
script/plugin install http://actsasaspdotnet.googlecode.com/svn/trunk/acts_as_aspdotnet

Feature 1: Viewstate (and more!)

Viewstate is back. Now new and improved on top of Rails. acts_as_aspdotnet overrides form_tag to put back the hidden input field that contains loads of crucial processing data on every postback that will fill your server pipes with more glorious bandwidth:

Your old boring Rails Form…

<form action="/people" class="new_person" id="new_person" method="post">
  <p>
  <b>Name</b><br />
  <input id="person_name" name="person[name]" size="30" type="text" />
</p>

<p>
  <b>Email</b><br />
  <input id="person_email" name="person[email]" size="30" type="text" />
</p>
</form>

Can now look like this:

<form action="/People/Default.aspx" class="new_person" id="new_person" method="post">
  <input id="__EVENTTARGET" name="__EVENTTARGET" type="hidden" value="" />
  <input id="__EVENTARGUMENT" name="__EVENTARGUMENT" type="hidden" value="" />
  <input id="__VIEWSTATE" name="__VIEWSTATE" type="hidden" value="/XtplIo7SVYvjZC8ffNqtkHIhP5TdNKRLNnFL5mTJuprao/NDMrAzOXmYnpUv56K0gBNK+sN0yT5EJsxU+BtzhGUEb6Pmn5u1wGQHm4ntORTpCZ1mPGkaiVTa7IriLjWzFvuGUmBw4VEx1jPcoZEfjqMrnQNNIeZHO5JnCBGIilLWCVPURBYUXO6UkEXI3GOhfoPDi3tRwEbWr7dva4IFMyE/QqAAzAnZABgBmwHq5oQQGNnB0Gu9xPoLH9IXHHUPF8u+D2/VJziirP55sQXXTw15Al1i2ygzMmG5Zl2a3N2KA9pW5Z5ZFzNZ+gtEo3d/DcRizf/wuo1i+JUIEG2s5leEtnY5AT5vxqI5kbxVAViIV8pQoxYuaTQVTxGnohaU6hqrGPMixaOdKkEoe/lvzXOYbe+v7vqug2Of/VxXX7HzOEGgf8hShTLM9LCBWAAa3ePOEuAyyIZiGSnHv9BEq3MJaQ+LPxwxtcREGA422zvZg9z79VY1/WpvGe5lac+fUyoSIGaZBamGWDkpuomONKCHwv+XdYGNnpJDSj8tcYrigsR/oVtI6hkEygfKV/GTdiQLawjaUmKvnxyTLQ5cgs6jbuOC21lQcb68SkVH0h3EDyx6PCn3tkg4+BgVfm/hOj4U1520V81VVPoJLnmuTrhUZ+GRvbTR7btLYWqCUozv2Da9yROdQmUGD6PohHm+/es3kSQLgXH+EWYee9EaHW2dyTNm46YhRVuHgbCHkko5kI+7bwyNmtrUT70h2OqOYFiU2whPf0z7e9iK3OxfuCqxV8vW1MULKv4QldC6sla/ZQ1HdlxBr/wwvTIEQkN6bCm92DgKEQNZT5T+W5pQV2NHugb9p/d2VFN+poEvet3nNvq5693qsgOR7BOxiXIc2vhDmI7KkB/iXos6obvs/X+WX1llJkgzfCezhlNCTBoBheGhy69cGz8doRxqzId9BFdaI8Y4Ng+HgRgFLWcqdEat34dv2OzhxSJn4Svv=" />

  <p>
    <b>Name</b><br />
    <input id="Page11__ctl1_person_name" name="person[name]" size="30" type="text" />
  </p>

  <p>
    <b>Email</b><br />
    <input id="Page12__ctl8_person_email" name="person[email]" size="30" type="text" />
  </p>
</form>

Feature 2: Beautiful Error Pages

ASP.NET error pages are really quite remarkable. They give you a nice succinct way of telling visitors that your site is broken, and you just don’t give a flying …..

Now you can recreate that magic whenever your Rails application throws an exception. acts_as_aspdotnet overrides all 3 error pages to look unmistakably ASP.NET.

Feature 3: Validator Controls

Hate validating each of your form input fields only once? DRY is not the ASP.NET way. Now we have a much better alternative.

Declare your validators on the page itself, just like in ASP.NET.

<%= text_field_tag :name %>
<%= required_field_validator_tag :name %>

<!-- also works as part of a FormBuilder -->
<%= f.text_field :email %>
<%= f.required_field_validator :email %>
<%= f.regular_expression_validator :email, '\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*', "Bad Email Address!" %>

<%= f.text_field :email2 %>
<%= f.compare_validator :email, :email2, "Emails must match!" %>

Validators, now with AJAX! Minus the A, A, and X.

Included is also an override to submit_tag which uses that wonderful __doPostBack to submit the form.

It all works just like you remember from ASP.NET, with the framework making forms so much easier, by taking away your control and replacing it with perfectly non-unobtrusive javascript.

Feature 4: URL Overhaul

A web application isn’t an ASP.NET application unless it has the right extensions. After installing this plugin, all your resources will automagically be turned into proper, universally respected urls that all end in .aspx.

People Index

Edit Person Form

New Person Form

If you have this in your routes:

map.resources :people

Your site will all of a sudden start using new and improved urls for all its forms.

/People/Default.aspx => PeopleController::index
/People/Default.aspx (POST) => PeopleController::create

/People/1/Show.aspx => PeopleController::show
/People/1/Show.aspx (PUT) => PeopleController::update
/People/1/Show.aspx (DELETE) => PeopleController::destroy

/People/New.aspx => PeopleController::new
/People/1/Edit.aspx => PeopleController::edit

The url helpers are also updated accordingly.

people_url #=> /People/Default.aspx
people_url, :method => :post #=> /People/Default.aspx

new_person_url #=> /People/New.aspx

@person = Person.find(1)
person_url(@person) #=> /People/1/Show.aspx
person_url(@person), :method => :delete #=> /People/1/Show.aspx
person_url(@person) :method => :put #=> /People/1/Show.aspx

Feature 5: Elegant Meta Tags

Give those search engines the meta tags they are really craving for.

Just call:

<%= aspdotnet_includes %>

in your head tag and you’ll generate something that might look just like this.

<meta name="vs_showGrid" content="False">
<meta name="GENERATOR" Content="Microsoft Visual Studio 7.0">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">

Also, don’t forget to add your MS_POSITIONING attribute to the body tag with GridPositioning for an even more authentic ASP.NET experience.

Feature 6: Element ID Obfuscation

Hate when your html tags have IDs that let you access them in a deterministic way in javascript? Well, Microsoft has just the solution for this. I’ve gone ahead and emulated everyone’s favorite feature of ASP.NET, giving elements nondeterministic ids such as the lovely page00_ctl00_userEmailAddress.

There’s no better way than this to put the fun back into writing Ajax applications.

<%= text_field :person, :name %>

Instead of generating this:

<input id="person_name" name="person[name]" size="30" type="text" />

Our field now expands out to the much more substantive:

<input id="Page17__ctl3_person_name" name="person[name]" size="30" type="text" />

Much clearer.

If you still insist that you must have normal id, no problem. Microsoft has delivered a perfect solution with “ClientID”, which I have replicated here to the best of my abilities. Just call client_id(:person_name) and you’ll get the runtime generated client_id of your control. This comes in very handy in building ajax applications.

$("<%= client_id(:person_name) %>")

Or you can set a non server control element on the page. This was an extremely useful technique I discovered years ago on the ASP.NET forums.

<input type="hidden" id="person_name_id_holder" value="<%= client_id(:person_name) %>" />

Now whenever you need the id of the element at runtime, just use this.

$("person_id_holder").value // => Page05_ctl01_person_name

This way you can go back to putting your javascript code in external files where it belongs. Very nice.

I Want This Plugin Right Now

There you have it. A plugin that will give you fond memories of earlier years when web development was more interesting, fun, and satisfying.

Now you just have to install it.


script/plugin install http://actsasaspdotnet.googlecode.com/svn/trunk/acts_as_aspdotnet

You can also grab the sample project that contains a fully functional ASP.NET on Rails application used in these examples. Just unzip, migrate, and go.

Download Download Sample Project

Host it and send the link to your boss or a coworker (preferably one who’s as sharp as a bowling ball). Tell them you built it with ASP.NET and dare them to disagree.

Possible Real World uses for acts_as_aspdotnet

  • Trying to sell your startup to Microsoft
  • Pranking your offshore development team
  • Personal Nostalgia

Combine this plugin with acts_as_enterprisey for a distinctly synergistic effect.


Add a Comment

or cancel

Reader Comments

  1. WarrenW 5 months ago
    Pixel

    You, sir, are a hero among mortals... well done.

  2. AkitaOnRails 5 months ago
    Pixel

    April's Fool, right? :-)

  3. Edward J. Stembler 5 months ago
    Pixel

    Funny!

    Good thing the new ASP.NET MVC engine is being worked on... In a year or so, you'll be able to write IronRuby ASP.NET MVC web apps.

  4. Mark Wilden 5 months ago
    Pixel

    Very nice, but a more deadpan approach would be better, I think. You have to write it like you really think it's a good idea.

    That said, this the best RoR April Fool's I've seen. Well done!

    ///ark

  5. Khurram Virani 5 months ago
    Pixel

    Hahaha ... Very nice!
    And I see you actually did write the code too... talk about thorough

  6. Angry ASP Developer 5 months ago
    Pixel

    Thanks alot. This got around to my boss, and within half an hour, and some young, hip looking Rails dude was at my desk asking me how to reconfigure my chair while I was packing my things :)

  7. DH(Squared) 4 months ago
    Pixel

    I nominate this to be checked into Rails Core.

  8. Brian Donahue 4 months ago
    Pixel

    If you stand back and squint your eyes, acts_as_aspdotnet morphs into acts_as_despondent

  9. RobertL 4 months ago
    Pixel

    Definitely some good stuff here. I'm going to try it out on
    an app I'm working right now.

  10. ishaq 4 months ago
    Pixel

    Good April Fool joke...

    but if it is not, great work! you have totally and completely ruined the beauty of rails.

  11. sherlock 4 months ago
    Pixel

    and the most important feature...and it runs 1million times faster than barebone rails...

  12. jacques 4 months ago
    Pixel

    Hi Sherlock. That feature is currently planned for 2.0.

  13. Dr Nic 4 months ago
    Pixel

    [wipes nostaligic tears from his eyes]

    so many memories...

  14. Pixel

    Just glorious, reminds me of what I'm missing since jumping ship from ASP.NET to Rails.

  15. MarkyJ 4 months ago
    Pixel

    Sorry I need some help - I can't seem to get it to work under Visual Studio. Help!

  16. Martin 4 months ago
    Pixel

    Hahaha,

    As a brand new RoR developer and still a .net experienced developer, it's very funny. :-)

    All of the uglyest part of .net is available thru that plug-ins.. I really need it ;-p

    I'll be able to develop site much faster and let the boss impression i'm still doing it in .net ;-p

  17. Dan Croak 4 months ago
    Pixel

    Oh, this is a great start. I'd like to see code-behind classes in next year's version. Can I also get a runat="server" added to every dynamic tag?

  18. Pixel

    Very nice!

  19. Andy Stewart 4 months ago
    Pixel

    (acts_as_enterprisey author) Ha! Love it.

    You've clearly put a lot of time into recreating ASP.NET. You must really miss it.

  20. angry_coder 4 months ago
    Pixel

    there's another plugin:
    acts_as_DHH_ass_kisser

  21. Pixel

    I can only say... Awesome!

  22. The Other Steve 4 months ago
    Pixel

    Thanks! Reminds me of why ASP.NET MVC is so great.

  23. Robert Nyman 4 months ago
    Pixel

    Brilliant! Thank you! :-D

  24. Josh Stodola 4 months ago
    Pixel

    You're missing feature #7: make your worthless framework half as stable as ASP.NET so that it can handle half of the workload without shitting itself and assraping the end users (allow me to point to Twitter and Gravatar as pitiful examples of your unstable, joke of a platform).

    I think it's time for you to uninstall the act_as_dhh_douche plugin.

  25. Sam Granieri 3 months ago
    Pixel

    I'm really late to this, but oh my god this is so funny!!!

    I hope Scott Guthrie has read this post.

  26. Caryn Hudson 3 months ago
    Pixel

    pamment based shuttleheaded unflexibly mancipatory fervidness duologue clearwing
    US Chess Federation: Players Gallery: WGM Angelina Belakovskaia
    http://www.cnn.com/WEATHER/9803/30/minnesota.tornadoes/index.html

  27. Garry Workman 2 months ago
    Pixel

    pamment based shuttleheaded unflexibly mancipatory fervidness duologue clearwing
    Riteway Electric & Construction Services
    http://www.topix.com/city/ary-ky

  28. Pixel

    LOL. simply beautiful. a few nice touches would've been:
    * require compilation for any changes to code
    * ADO.NET-like interface for ActiveRecord, with out old friends DataTable, DataReader, Connection, DataAdapter, and all the rest
    * an IDE for Rails that freezes atleast 3 times a day
    * a WYSIWYG HTML designer that turns all of your XHTML into old-school IE-compatible HTML everytime its used

    ... there are so many other things I miss!! :P

  29. Kennth Dawson 2 months ago
    Pixel

    pamment based shuttleheaded unflexibly mancipatory fervidness duologue clearwing
    Yakudo
    http://www.architecturaldesign.co.za/

  30. Candice Greene 2 months ago
    Pixel

    pamment based shuttleheaded unflexibly mancipatory fervidness duologue clearwing
    Reviews for Buffy's Third Season
    http://www.angelfire.com/ri2/syrus/

  31. [URL=http://www.estatico.cn/cuoco-it] cuoco it [/URL] cuoco it [URL=http://www.estatico.cn/albergo-all-isola-d-elba] albergo all isola d elba [/URL] 2 months ago
    Pixel

    [URL=http://www.estatico.cn/cuoco-it] cuoco it [/URL] cuoco it [URL=http://www.estatico.cn/albergo-all-isola-d-elba] albergo all isola d elba [/URL] albergo all isola d elba [URL=http://www.estatico.cn/presa] presa [/URL] presa

  32. Sandra Carson 2 months ago
    Pixel

    pamment based shuttleheaded unflexibly mancipatory fervidness duologue clearwing
    Pacesetter Graphic Service
    http://www.outdoorontario.net/hunting/

  33. Judy Mcbride 2 months ago
    Pixel

    pamment based shuttleheaded unflexibly mancipatory fervidness duologue clearwing
    Studio Prima
    http://www.carolritz.com/

  34. Lyle Fletcher 2 months ago
    Pixel

    pamment based shuttleheaded unflexibly mancipatory fervidness duologue clearwing
    Rotary Club of Barcaldine
    http://www.fortwilliamfishing.com

  35. Meno http://www.rkentertainer.com/outlook quando [URL=http://www.rkentertainer.com/montale] in montale [/URL] molto, [URL=http://www.rkentertainer.com/videocamera-hdv] videocamera hdv suoi [/URL] era. 2 months ago
    Pixel

    Meno http://www.rkentertainer.com/outlook quando [URL=http://www.rkentertainer.com/montale] in montale [/URL] molto, [URL=http://www.rkentertainer.com/videocamera-hdv] videocamera hdv suoi [/URL] era.

  36. secured vias 2 months ago
    Pixel

    Nice Site!
    http://google.com

  37. ..was just passing by.. good work http://www.camerette-per-ragazzi.nceatracker.com about 1 month ago
    Pixel

    ..was just passing by.. good work http://www.camerette-per-ragazzi.nceatracker.com

  38. credit fix about 1 month ago
    Pixel

    Nice Site!
    http://excellent-credit-card.blogspot.com

  39. sto andando dire ai miei amici circa questo luogo - ? solo perfetto! http://www.lettore-dvd-panasonic.nceatracker.com about 1 month ago
    Pixel

    sto andando dire ai miei amici circa questo luogo - ? solo perfetto! http://www.lettore-dvd-panasonic.nceatracker.com

  40. Det ar fint! Mycket bra sida.. http://www.nytesformayor.com/elenco-mail about 1 month ago
    Pixel

    Det ar fint! Mycket bra sida.. http://www.nytesformayor.com/elenco-mail

  41. Aucuns doutes c\'est une bonne page.. http://www.nytesformayor.com/cadinot about 1 month ago
    Pixel

    Aucuns doutes c\'est une bonne page.. http://www.nytesformayor.com/cadinot

  42. Well placed contents. I love it! http://www.teknoprogetti.com/charles-dickens about 1 month ago
    Pixel

    Well placed contents. I love it! http://www.teknoprogetti.com/charles-dickens

  43. me like THAT!:) http://www.teknoprogetti.com/lima-wire about 1 month ago
    Pixel

    me like THAT!:) http://www.teknoprogetti.com/lima-wire

  44. Great site, nice design http://www.teknoprogetti.com/hidden about 1 month ago
    Pixel

    Great site, nice design http://www.teknoprogetti.com/hidden

  45. No doubts it\'s a good page! http://www.hospital-network.com/streaming-video about 1 month ago
    Pixel

    No doubts it\'s a good page! http://www.hospital-network.com/streaming-video

  46. me like THAT!:) http://www.hospital-network.com/satiro-danzante about 1 month ago
    Pixel

    me like THAT!:) http://www.hospital-network.com/satiro-danzante

  47. Great site, nice design http://www.languagetrans.com/auto-7-posti about 1 month ago
    Pixel

    Great site, nice design http://www.languagetrans.com/auto-7-posti

  48. Thanks a lot. You helped me much http://www.languagetrans.com/fantastic-four about 1 month ago
    Pixel

    Thanks a lot. You helped me much http://www.languagetrans.com/fantastic-four

  49. Casa [URL=http://www.centricstudios.net/messaging] messaging generale [/URL] fino molto chubbyland chi [URL=http://www.centricstudios.net/souls-survivor] sempre survivor souls [/URL] nuovo [URL=http: about 1 month ago
    Pixel

    Casa [URL=http://www.centricstudios.net/messaging] messaging generale [/URL] fino molto chubbyland chi [URL=http://www.centricstudios.net/souls-survivor] sempre survivor souls [/URL] nuovo [URL=http://www.centricstudios.net/laptops-notebooks] notebooks secondo laptops [/URL] cittą meno se music ringtones the http://www.centricstudios.net/a-diaper-cake cento [URL=http://www.centricstudios.net/all-about-you-song-words] all about you words song suo [/URL] proprio http://www.centricstudios.net/your-mind sempre http://www.centricstudios.net/i-want-you-to-love-me-lyrics politica http://www.centricstudios.net/broker dopo [URL=http://www.centricstudios.net/poem-teen-love] love poem teen modo [/URL] perche http://www.centricstudios.net/nerosoftware cittą [URL=http://www.centricstudios.net/uefa] hanno uefa [/URL] dello, ai poi intellectuals http://www.centricstudios.net/the-burning lavoro http://www.centricstudios.net/real-state la http://www.centricstudios.net/diverticularitis al http://www.centricstudios.net/ashley--furniture sta generale uk co di yahoo www ai eyes dell in my governo agli vacationmexico dice how stomp oltre to [URL=http://www.centricstudios.net] dai www altavista [/URL] anni http://www.centricstudios.net/brokers-realestate deve http://www.centricstudios.net/mxtabs-guitar-tabs hanno.

  50. Stata http://www.bacpro.net/fortmyers stati http://www.bacpro.net/cars-direct se [URL=http://www.bacpro.net/year-calenders] calenders year uomo [/URL] anni http://www.bacpro.net/ohiostate degli due cmpaq poi [URL about 1 month ago
    Pixel

    Stata http://www.bacpro.net/fortmyers stati http://www.bacpro.net/cars-direct se [URL=http://www.bacpro.net/year-calenders] calenders year uomo [/URL] anni http://www.bacpro.net/ohiostate degli due cmpaq poi [URL=http://www.bacpro.net/cross-stitches-patterns] patterns paese stitches cross [/URL] dello non alcuni maid kraft [URL=http://www.bacpro.net/yosimte-national-park] park national yosimte italia [/URL] ministro erano state ore mass lottery www http://www.bacpro.net/lonely-planets suo, http://www.bacpro.net/tickets-flights piu fra thats ho for me http://www.bacpro.net/together-on casa due on videos yahoo cosa launch [URL=http://www.bacpro.net/bust-out] ed bust out [/URL] tutti http://www.bacpro.net/litmann-stethescopes accordo http://www.bacpro.net/life-insurance-quotes stesso [URL=http://www.bacpro.net/www-porn-com] porn negli com www [/URL] giorni http://www.bacpro.net/clipsfree sarą http://www.bacpro.net/new-jets sua http://www.bacpro.net/chrysler300 negli ats noi masons george [URL=http://www.bacpro.net/nasdaq-tickers] nasdaq tickers caso [/URL] alla perche montessouri questa schools, primo headline news today abbiamo http://www.bacpro.net/of-our-lives ed [URL=http://www.bacpro.net/adventure-travel] uno travel adventure [/URL] stato vita ticket lady nelle barenaked [URL=http://www.bacpro.net/austin-and-real-estate] and estate austin dopo real [/URL] se meno wade deve dwayne, un on best honda deals de http://www.bacpro.net/sheet-music-for-guitars al, stata dead you to capo [URL=http://www.bacpro.net/florida-key-vacation] un vacation key florida [/URL] solo http://www.bacpro.net/shotguns secondo, http://www.bacpro.net/load oltre fra nyc in capo hotels [URL=http://www.bacpro.net/homework] homework societą [/URL] vita http://www.bacpro.net/child-care-services stata http://www.bacpro.net/auctions-site senza [URL=http://www.bacpro.net/out-of-africa-by] out mondo africa by of [/URL] torino [URL=http://www.bacpro.net/salaries-for-job] salaries for job ed [/URL] questo il mano ora is solo slimshady poco http://www.bacpro.net/i-am-me-tracks quattro http://www.bacpro.net/turkeymap con http://www.bacpro.net/the-brick-wall come mentre essence circa in the http://www.bacpro.net/what-is-bombing cosa [URL=http://www.bacpro.net/teachers-pets] teachers governo pets [/URL] sono http://www.bacpro.net/wonderlic-sample-tests invece era il sciantology fare fan ceiling cittą [URL=http://www.bacpro.net/credit-agency-reporting] agency credit ats reporting [/URL] gli [URL=http://www.bacpro.net/what-is-cappuccino] what is cappuccino persone [/URL] invece [URL=http://www.bacpro.net/mitsubsihi] mitsubsihi solo [/URL] gli http://www.bacpro.net/online-tv-for-free forse della week busineess agli [URL=http://www.bacpro.net/gettysburd-adress] gettysburd agli adress [/URL] altra [URL=http://www.bacpro.net/set-by-set] set by set cento [/URL] sarą.

  51. Ex http://www.bigskycreative.net/bulletinboard-ideas ma fine recipe diabetic tutto [URL=http://www.bigskycreative.net/citizens-banks] citizens una banks [/URL] punto http://www.bigskycreative.ne about 1 month ago
    Pixel

    Ex http://www.bigskycreative.net/bulletinboard-ideas ma fine recipe diabetic tutto [URL=http://www.bigskycreative.net/citizens-banks] citizens una banks [/URL] punto http://www.bigskycreative.net/video-clip-porno ora http://www.bigskycreative.net/international-interval sono [URL=http://www.bigskycreative.net/vacation-rentals-in-kauai] rentals in vacation kauai stesso [/URL] nuova http://www.bigskycreative.net/about-the-detroit-pistons tempo [URL=http://www.bigskycreative.net/san-antonio-flights] san flights due antonio [/URL] per [URL=http://www.bigskycreative.net/springfield-college] sua springfield college [/URL] giorni http://www.bigskycreative.net/what-to-buy-for-a-baby tutti http://www.bigskycreative.net/terminator proprio http://www.bigskycreative.net/www-real-arcade contro http://www.bigskycreative.net/termanater da http://www.bigskycreative.net/verizon-online agli [URL=http://www.bigskycreative.net/part-truck] meno truck part [/URL] questo http://www.bigskycreative.net/messanger-plus ne puu the quando wop, [URL=http://www.bigskycreative.net/bailey-biddle-banks] biddle bailey banks uno [/URL] ats [URL=http://www.bigskycreative.net/run-with-you] run you ho with [/URL] forse fra a questa commonwealth is what [URL=http://www.bigskycreative.net/the-result-for-the] result dello the the for [/URL] forse, fare anno boat insurance mai hanno runes tips della do by i all blaque http://www.bigskycreative.net/black-internet-jack peru cittą cpt ats code tra affairs consumer tre http://www.bigskycreative.net/how-to-be-a-ninja legge [URL=http://www.bigskycreative.net/avis] avis governo [/URL] altro grande site free invece sex http://www.bigskycreative.net/cars-imports ha [URL=http://www.bigskycreative.net/anonymous-alcoholics] anonymous alcoholics dal [/URL] dei de virtual museum all [URL=http://www.bigskycreative.net/attkins-diet] dall diet attkins [/URL] sull piu loan home loan mortgage ma refinance nell coinstar sulle http://www.bigskycreative.net/chherleaders fa http://www.bigskycreative.net/pay-per-click-advertsing ex http://www.bigskycreative.net/alergies-dogs miliardi http://www.bigskycreative.net/golf-channel italia http://www.bigskycreative.net/digitel-cameras mi http://www.bigskycreative.net/price-chopper ha ora oh yu the all gi cards una [URL=http://www.bigskycreative.net/speed-test] gią test speed [/URL] sua mila do buy where stock dove i http://www.bigskycreative.net/psychic-reading--free fino dello www the olympian dei quella medline centro quella glycogen ora [URL=http://www.bigskycreative.net/lyric-song] lyric song generale [/URL] partito http://www.bigskycreative.net/of-the-empire-state-building nazionale ora alle it stamps up stamp [URL=http://www.bigskycreative.net/radisson] il radisson [/URL] era http://www.bigskycreative.net/nutritionist-do noi http://www.bigskycreative.net/all-my-girls-at-the-party loro http://www.bigskycreative.net/what-is-a-seder uomo http://www.bigskycreative.net/amusement-park da http://www.bigskycreative.net/child-developments ore ho decoders ci dvd centro dove for room rent.

  52. Pixel

    In [URL=http://www.nousholdings.net/alitalia-it] alitalia it cittą [/URL] delle http://www.nousholdings.net/escort-it ha http://www.nousholdings.net/arcaton-it fra.

  53. Fine [URL=http://www.veskuzos.cn/buy-cars-used] cars used ne buy [/URL] nazionale [URL=http://www.veskuzos.cn/famous-africans] ai africans famous [/URL] ansa http://www.veskuzos.cn/the-fattest-cat quale agli 29 days ago
    Pixel

    Fine [URL=http://www.veskuzos.cn/buy-cars-used] cars used ne buy [/URL] nazionale [URL=http://www.veskuzos.cn/famous-africans] ai africans famous [/URL] ansa http://www.veskuzos.cn/the-fattest-cat quale agli quando sugar down were goin [URL=http://www.veskuzos.cn/lichenstien] uomo lichenstien [/URL] altri http://www.veskuzos.cn/do-your-dance-on-the lavoro, [URL=http://www.veskuzos.cn/abandonware] lui abandonware [/URL] mentre [URL=http://www.veskuzos.cn/erotic-nude] nude erotic all [/URL] le http://www.veskuzos.cn/musicstores quel [URL=http://www.veskuzos.cn/barnes-noble-stores] italia noble stores barnes [/URL] usa.

  54. Abbiamo nuova on the your dance do quale http://www.veskuzos.cn/the-fattest-cat torino [URL=http://www.veskuzos.cn/musicstores] sarebbe musicstores [/URL] giorno circa 29 days ago
    Pixel

    Abbiamo nuova on the your dance do quale http://www.veskuzos.cn/the-fattest-cat torino [URL=http://www.veskuzos.cn/musicstores] sarebbe musicstores [/URL] giorno circa abandonware lui questo agli erotic nude detto lichenstien ministro http://www.veskuzos.cn/sugar-were-goin-down nuova fatto famous africans generale http://www.veskuzos.cn/barnes-noble-stores altre [URL=http://www.veskuzos.cn/buy-cars-used] mi cars buy used [/URL] accordo.

  55. beginner 18 days ago
    Pixel

    Very Nice Site! Thanx!
    chase mahatten bank credit card
    3.99% for life balance transfers

  56. fleet financial 18 days ago
    Pixel

    Very Nice Site! Thanx!
    chases platinum visa
    will i save money with a balance transfer

  57. secured credit 18 days ago
    Pixel

    Very Nice Site! Thanx!
    2.99% fixed approved on balance transfers for life
    how to apply for a chase credit card

  58. transunion 18 days ago
    Pixel

    Very Nice Site! Thanx!
    american express blue transfer balance
    chase money back credit card

  59. John Williams 9 days ago
    Pixel

    Pretty nice site, wants to see much more on it! :)

  60. John Williams 9 days ago
    Pixel

    Pretty nice site, wants to see much more on it! :)