English 中文(简体)
如何修改复选列表的外观?
原标题:how to modify the appearance of a checkboxlist to it look like buttons
  • 时间:2012-05-25 15:48:39
  •  标签:
  • c#
  • asp.net

我以为这很容易, 但我无法找到如何做到这一点。 我找到了一个复选框( < a href="http://msdn.microsoft.com/ en-us/library/system.windows.forms. checkbox. acottance. aspx" rel="nofollow" > http://msdn.microsoft.com/ en-us/library/system. windows.forms.checkbox. apperance.aspx) 。

但是,如何能做到这一点 与复选列表控制?

最佳回答

正如史蒂夫 B 所建议的那样, 一个很好的方法就是使用 jQuery 。 我将一个复选框放入一个 App: repeater 控制器, 然后修改此复选框的外观, 使其看起来像一个按钮。 这是代码 :

<asp:Repeater ID="RepeaterVocabularyWords" runat="server" OnItemCommand="RepeaterVocabularyWords_ItemCommand">
    <ItemTemplate>
        <span class="storeCheck">
            <asp:CheckBox ID="CheckBoxVocabularyWord" Font-Size="0px" runat="server" Text="<%# Container.DataItem %>"
                ClientIDMode="Static" CssClass="{labelOn:  <%# Container.DataItem %> , labelOff:  <%# Container.DataItem %> , easing:  easeOutBounce , duration: 500}" />
        </span>
    </ItemTemplate>
</asp:Repeater>

在后面的代码里:

String [] wordsForButtons = new[] { "text1", "text2", "text3" };               
RepeaterVocabularyWords.DataSource = wordsForButtons;
RepeaterVocabularyWords.DataBind(); 

我希望这对某人有用!

卡洛斯·卡洛斯

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签