Can anyone tell me, is asp.net able to render a checkbox similar to the asp
BigCheckBox? I am migrating an asp app to asp.net and need to emulate the
same look and feel of the old application.
Here is an asp example of the control I need for asp.net:
<input type="checkbox" class="BigCheckBox" Value="1234">
This tag seems to create a normal checkbox in asp.net, rather than the
larger "XP" looking checkbox that is rendered on the old asp page.
Thanks in advance,
Curt
tom pester - 25 Aug 2005 01:10 GMT
This issue has nothing to do with ASP. Its a CSS issue.
See the "class="BigCheckBox"" in your snippet? There has to be a defenition
of that class in your page or in an external CSS file for it to work.
If you don't understand it check with the graphical designer of the site.
Cheers,
Tom Pester
> Can anyone tell me, is asp.net able to render a checkbox similar to
> the asp BigCheckBox? I am migrating an asp app to asp.net and need to
[quoted text clipped - 9 lines]
> Thanks in advance,
> Cur