I\'m developing an ASP.NET website that will need to support non-flash users.
In case the user\'s browser doesn\'t support Flash, or they have Flash disabled, I\'d l
You should not be dealing with this on the server side. Most Flash detection/embedding scripts do this sort of behaviour by default. I highly recommend SWFObject.
with your image (or any html you want really) inside it
- Give it an ID eg:
- Tell SWFObject to override that div block with a Flash player
If they have disabled, they see the unchanged html. If they have javascript enabled but no Flash plugin, they see the html as well. Basically, they'll see the Flash only if they have javascript and the Flash plugin.
That's about as good as it gets.