About the author

Steven Harmansteven harman :: makes sweet software with computers!

For recent posts and more about me, scroll to the bottom.

Subscribe

  • Subscribe to my feed. via RSS
  • Subscribe via email via email

News

Badges

  • Subtext Project
  • Support Subtext

css friendly control adapters

There are 4 entries for the tag css friendly control adapters

CSS Friendly Control Adapters Now Hosted on CodePlex

I don't know how I missed this for so long... but I just realized that the CSS Adapters are now a community product. As best I can tell, Microsoft decided to hand control of the Adapters project over to the OSS community and it is now being hosted at CodePlex. Actually... I do know how and why I didn't catch onto this until now - Microsoft's asp.net site make no mention of the fact that the product has now been handed off to the open source community. (Or, at least it didn't as of the time of this writing.)...

CSS Control Adapters Cause Double PostBack in IE

As you might have been able to tell by my last few posts about CSS Friendly Control Adapters - I'm in the middle of using the adapters on a project... and I'm running into all kinds of trouble. I finally came to the realization that many of the issues I've seen are all caused by the same bit of busted functionality - a double PostBack. I just posted a new message to the CSS Friendly Control Adapters Forum over at asp.net, and I figured I'd re-post it here in hopes of drawing a little more attention to the issue....

CSS Friendly Adapters - Using Comments in your Browser File can be Touchy

If you're using CSS Friendly Control Adapters to get some of your asp.net 2.0 controls under control - at least when it comes to the markup they render - be careful when adding comments to the CSSFriendlyAdapters.browser file. The .browser file is an XML formatted file that the asp.net runtime uses to configure what adapter(s) gets attached to which framework control(s). And as some of you may be aware, there are some known issues with using the CSS Adapters with some of the new Login controls. One common solution work around is to disable the CSS Adapters for the controls...

CSS Friendly Control Adapters, CreateUserWizard, and ViewState... Oh My!

So you're using the CSS Friendly Control Adapters to generate lean, mean markup for your asp.net 2.0 controls, awesome! And you're also using some of the new Login controls to cut down on the hand-rolled authentication/authorization code, great. Do you also have ViewState disabled? Are you also having trouble getting values out of the controls during PostBack processing? I was! My scenario I was using the CSS Friendly Control Adapters and the Login controls without ViewState. Specifically I was using the CreateUserWizard and it's ContentTemplate to generate a sleek user registration UI. I had attached a LoginCancelEventHandler to the wizard's...