I have a radiobuttonlist and a checkboxlist in my page. Now im putting a CSS on my pages wherein the INPUT class= for all the textboxes is set to make them all equal in size and color...
But now he takes this also for the radiobuttonlist: it also is a input for the HTML code.
This would not result in a problem at all when i would create a class in my CSS to assign to the radiobuttonlist or checkboxlist.
So i did.
Problem now is that he takes the ASP.NET code and makes the following HTML from it.
what is terrible, because the class is on the table,not on the input: therefor the input keeps his CSS and looks like a textbox! witch is not the plan!
thanks for any help on this,
Gertie
But now he takes this also for the radiobuttonlist: it also is a input for the HTML code.
This would not result in a problem at all when i would create a class in my CSS to assign to the radiobuttonlist or checkboxlist.
So i did.
Problem now is that he takes the ASP.NET code and makes the following HTML from it.
Code:
<table id="rblDatum" class="optievak" border="0" style="width:179px;">
<tr>
<td><input id="rblDatum_0" type="radio" name="rblDatum" value="nieuwer" checked="checked" /><label for="rblDatum_0">en nieuwer</label></td>
</tr><tr>
<td><input id="rblDatum_1" type="radio" name="rblDatum" value="ouder" /><label for="rblDatum_1">en ouder</label></td>
</tr>
</table>
thanks for any help on this,
Gertie
Last edited by a moderator: