473,383 Members | 1,762 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,383 software developers and data experts.

BigCheckBox

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
Nov 19 '05 #1
5 2116
Curt,

I have no idea how the asp BigCheckBox looks like, but, if all you want is
just to make a checkbox look bigger, you can try setting bigger font-size.
Eliyahu

"Curt" <cu**@nospam.com> wrote in message
news:Jh****************@newssvr23.news.prodigy.net ...
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

Nov 19 '05 #2
Thanks for the idea, but the font size does not appear to affect the size of
the checkbox.

Here are some examples I have tried:
<input id="abc" type="checkbox" CHECKED size="60">
(The CHECKED size attribute does not seem to do anything...)

<asp:checkboxlist id="CheckBoxList1" runat="server" Font-Names="Verdana"
Font-Size="Smaller" Width="500px">
<asp:ListItem Value="test value"></asp:ListItem>
</asp:checkboxlist>

<asp:CheckBox id="CheckBox1" runat="server" Checked="True"></asp:CheckBox>

None of the checkboxes appear to be sizeable. The text on the asp:CheckBox
is sizeable, but not the checkbox itself.

Any ideas?

Thanks,
Curt

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:ex**************@TK2MSFTNGP11.phx.gbl...
Curt,

I have no idea how the asp BigCheckBox looks like, but, if all you want is
just to make a checkbox look bigger, you can try setting bigger font-size.
Eliyahu

"Curt" <cu**@nospam.com> wrote in message
news:Jh****************@newssvr23.news.prodigy.net ...
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


Nov 19 '05 #3
May you can fake it with a little textbox that will catch onclick events and
toggle its content between "V" and empty? Just guessing...

Eliyahu

"Curt" <cu**@nospam.com> wrote in message
news:an*****************@newssvr19.news.prodigy.co m...
Thanks for the idea, but the font size does not appear to affect the size of the checkbox.

Here are some examples I have tried:
<input id="abc" type="checkbox" CHECKED size="60">
(The CHECKED size attribute does not seem to do anything...)

<asp:checkboxlist id="CheckBoxList1" runat="server" Font-Names="Verdana"
Font-Size="Smaller" Width="500px">
<asp:ListItem Value="test value"></asp:ListItem>
</asp:checkboxlist>

<asp:CheckBox id="CheckBox1" runat="server" Checked="True"></asp:CheckBox>

None of the checkboxes appear to be sizeable. The text on the asp:CheckBox is sizeable, but not the checkbox itself.

Any ideas?

Thanks,
Curt

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:ex**************@TK2MSFTNGP11.phx.gbl...
Curt,

I have no idea how the asp BigCheckBox looks like, but, if all you want is just to make a checkbox look bigger, you can try setting bigger font-size.

Eliyahu

"Curt" <cu**@nospam.com> wrote in message
news:Jh****************@newssvr23.news.prodigy.net ...
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



Nov 19 '05 #4
I may have to employ a creative solution as such. Or, require the client to
adapt to the smaller checkbox. Which is not a real big deal, but it does
backslide from the "XP" look. I'm into retro clothes and cars...but I try
to avoid retro solutions!

Thanks for your ideas, I really appreciate the assistance. If you get any
more ideas, please post them!

Thanks,
Curt

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
May you can fake it with a little textbox that will catch onclick events
and
toggle its content between "V" and empty? Just guessing...

Eliyahu

"Curt" <cu**@nospam.com> wrote in message
news:an*****************@newssvr19.news.prodigy.co m...
Thanks for the idea, but the font size does not appear to affect the size

of
the checkbox.

Here are some examples I have tried:
<input id="abc" type="checkbox" CHECKED size="60">
(The CHECKED size attribute does not seem to do anything...)

<asp:checkboxlist id="CheckBoxList1" runat="server" Font-Names="Verdana"
Font-Size="Smaller" Width="500px">
<asp:ListItem Value="test value"></asp:ListItem>
</asp:checkboxlist>

<asp:CheckBox id="CheckBox1" runat="server"
Checked="True"></asp:CheckBox>

None of the checkboxes appear to be sizeable. The text on the

asp:CheckBox
is sizeable, but not the checkbox itself.

Any ideas?

Thanks,
Curt

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:ex**************@TK2MSFTNGP11.phx.gbl...
> Curt,
>
> I have no idea how the asp BigCheckBox looks like, but, if all you want is > just to make a checkbox look bigger, you can try setting bigger font-size. >
>
> Eliyahu
>
> "Curt" <cu**@nospam.com> wrote in message
> news:Jh****************@newssvr23.news.prodigy.net ...
>> 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
>>
>>
>
>



Nov 19 '05 #5
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 Peste
Nov 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.