码迷,mamicode.com
首页 > 其他好文 > 详细

点击Textbox 给日历控件赋值

时间:2014-09-16 00:14:09      阅读:344      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   java   ar   div   

1、前台代码:

bubuko.com,布布扣
<asp:TextBox ID="TextBox1" runat="server" onfocus="return show();" ReadOnly="true" ></asp:TextBox><asp:Calendar ID="Calendar1" runat="server" OnSelectionChanged="Calendar1_SelectionChanged" Style="display:none;"></asp:Calendar>
        <script type="text/javascript">
            function show() {
                document.getElementById("<%= Calendar1.ClientID%>").style.display = "block";
                return false;
            }
        </script>
View Code

2、后台代码:

bubuko.com,布布扣
protected void Calendar1_SelectionChanged(object sender, EventArgs e)
        {
            TextBox1.Text = Calendar1.SelectedDate.ToShortDateString();
            Calendar1.Attributes.Add("display", "none");
        }
View Code

 

点击Textbox 给日历控件赋值

标签:style   blog   http   color   io   os   java   ar   div   

原文地址:http://www.cnblogs.com/caishuhua226/p/3973993.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!