I would like to allow my webapp users to save custom CSS through a text field to modify the look of their GUI.
I guess there are some evil CSS hacks ...
i have a repeater control with item templates having check boxes,and i need the check boxes inside the repeatercontrol to be checked based on the database value of a column ...
<html>
<body>
<form action="">
<input type="checkbox" name="vehicle" value="Bike" checked="false" /> I have a bike<br />
<input type="checkbox" name="vehicle" value="Car" /> I have a car
</form>
</body>
</html>