<small id='GnCjc'></small><noframes id='GnCjc'>

    <bdo id='GnCjc'></bdo><ul id='GnCjc'></ul>
    1. <tfoot id='GnCjc'></tfoot><legend id='GnCjc'><style id='GnCjc'><dir id='GnCjc'><q id='GnCjc'></q></dir></style></legend>
    2. <i id='GnCjc'><tr id='GnCjc'><dt id='GnCjc'><q id='GnCjc'><span id='GnCjc'><b id='GnCjc'><form id='GnCjc'><ins id='GnCjc'></ins><ul id='GnCjc'></ul><sub id='GnCjc'></sub></form><legend id='GnCjc'></legend><bdo id='GnCjc'><pre id='GnCjc'><center id='GnCjc'></center></pre></bdo></b><th id='GnCjc'></th></span></q></dt></tr></i><div id='GnCjc'><tfoot id='GnCjc'></tfoot><dl id='GnCjc'><fieldset id='GnCjc'></fieldset></dl></div>

        在 ASP.NET 日历控件的 OnDayRender 事件期间添加 Li

        时间:2023-08-26

        <small id='XmDeu'></small><noframes id='XmDeu'>

        • <bdo id='XmDeu'></bdo><ul id='XmDeu'></ul>
        • <legend id='XmDeu'><style id='XmDeu'><dir id='XmDeu'><q id='XmDeu'></q></dir></style></legend>
            <tfoot id='XmDeu'></tfoot>

              <tbody id='XmDeu'></tbody>

                <i id='XmDeu'><tr id='XmDeu'><dt id='XmDeu'><q id='XmDeu'><span id='XmDeu'><b id='XmDeu'><form id='XmDeu'><ins id='XmDeu'></ins><ul id='XmDeu'></ul><sub id='XmDeu'></sub></form><legend id='XmDeu'></legend><bdo id='XmDeu'><pre id='XmDeu'><center id='XmDeu'></center></pre></bdo></b><th id='XmDeu'></th></span></q></dt></tr></i><div id='XmDeu'><tfoot id='XmDeu'></tfoot><dl id='XmDeu'><fieldset id='XmDeu'></fieldset></dl></div>

                1. 本文介绍了在 ASP.NET 日历控件的 OnDayRender 事件期间添加 LinkBut​​tons的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  所以我需要根据数据库中的数据动态地为 asp:calendar 控件的每个单元格添加一些链接按钮.我想知道这样做的最佳方法是什么,以便链接按钮将在回发时连接到它们的事件(据我所知,在 Day Render 事件上创建链接按钮并将它们添加到 LinkBut​​ton 事件之后会发生被解雇了).

                  So I need to add some link buttons to each cell of a asp:calendar control dynamically based on data in the database. I wondering what the best way to do this is so that the the link buttons will be wired up to their events on postbacks (as to my knowledge creating the link buttons on the Day Render event and adding them there will occur after the LinkButton events would have fired).

                  有没有人有好的方法来处理这个问题?

                  Does anyone have a nice way to handle this?

                  推荐答案

                  这是一个 hack,但它有效,你必须巧妙地处理事件命名......等等

                  This is a hack but it works, you will have to get crafty with the event naming...etc

                  标记:

                  <asp:Calendar id="calendar1" 
                                  OnDayRender="DayRender"
                                  runat="server">
                  
                  <asp:LinkButton ID="LinkButton1" style="display:none;" runat="server" 
                     onclick="LinkButton1_Click">LinkButton</asp:LinkButton>
                  

                  代码隐藏:

                  protected void DayRender(Object source, DayRenderEventArgs e) 
                  {
                  
                      LinkButton lb = new LinkButton();
                      lb.ID = "LinkButton1";
                      //set all your props
                       lb.Attributes.Add("href", 
                          "javascript:__doPostBack('" + Calendar1.UniqueID + "$" + lb.ClientID +"','')");
                  
                      e.Cell.Controls.Add(lb);
                  
                  }
                  
                  protected void LinkButton1_Click(object sender, EventArgs e)
                  {
                      //do something
                  }
                  

                  这篇关于在 ASP.NET 日历控件的 OnDayRender 事件期间添加 LinkBut​​tons的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:.NET 是否给了我错误的 2008 年 12 月 29 日的周数 下一篇:.net 中 ics 文件的解析器

                  相关文章

                  最新文章

                  <small id='zSch8'></small><noframes id='zSch8'>

                  <tfoot id='zSch8'></tfoot>
                  <legend id='zSch8'><style id='zSch8'><dir id='zSch8'><q id='zSch8'></q></dir></style></legend>
                  • <bdo id='zSch8'></bdo><ul id='zSch8'></ul>

                    1. <i id='zSch8'><tr id='zSch8'><dt id='zSch8'><q id='zSch8'><span id='zSch8'><b id='zSch8'><form id='zSch8'><ins id='zSch8'></ins><ul id='zSch8'></ul><sub id='zSch8'></sub></form><legend id='zSch8'></legend><bdo id='zSch8'><pre id='zSch8'><center id='zSch8'></center></pre></bdo></b><th id='zSch8'></th></span></q></dt></tr></i><div id='zSch8'><tfoot id='zSch8'></tfoot><dl id='zSch8'><fieldset id='zSch8'></fieldset></dl></div>