我需要在网页中添加能够选择日期和时间的一个控件,我找到了date and time picker 控件但是不能放在web页上啊,怎么想vs2008中添加控件啊,有没有更好的时间日期控件啊??各位大侠帮帮忙啦~~

解决方案 »

  1.   

    http://www.my97.net/很多人都是用这个的
      

  2.   

    http://www.my97.net/
    我现在的项目就是用这个控件的
    用法很简单,你就在项目里引用相应的文件
      

  3.   

    使用方法是:
    1  先引用“WdatePicker.js”文件<script src="My97DatePicker/WdatePicker.js" type="text/javascript"></script>
    2  然后在<input type="text" onclick="WdatePicker()"/> 
      

  4.   

    my97不支持Opera,而且很久没更新了
      

  5.   


    using SYSTEM.IO; 
    //C#追加文件
     StreamWriter sw=File.AppendText(Server.MapPath(".")+"\\myText.txt");
     sw.WriteLine("追逐理想");
     sw.WriteLine("kzlll");
     sw.WriteLine(".NET笔记");
     sw.Flush();
     sw.Close();     StreamWriter sw=File.AppendText(System.Windows.Forms.Application.StartupPath+"\\lgcx.log");
         sw.WriteLine(SysLog.FProgramName+SysLog.FCreateName+SysLog.FTime+SysLog.FId+SysLog.FPath+SysLog.FDesc);
         //sw.WriteLine("kzlll1");
         //sw.WriteLine(".NET笔记1");
         sw.Flush();
         sw.Close();
      

  6.   

    上面发错了ASP.NET日历控件
     <%@ Page Language="C#" %>
      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
      <script runat="server">
     
         protected void calEventDate_SelectionChanged(object sender, EventArgs e)
         {
             txtEventDate.Text = calEventDate.SelectedDate.ToString("d");
         }
     
         protected void btnSubmit_Click(object sender, EventArgs e)
         {
             lblResult.Text = "You picked: " + txtEventDate.Text;
         }
     </script>
     <html xmlns="http://www.w3.org/1999/xhtml" >
     <head id="Head1" runat="server">
         <script type="text/javascript">
             
             function displayCalendar()
             {
                 var datePicker = document.getElementById('datePicker');
                 datePicker.style.display = 'block';
             }
         
         </script>
         <style type="text/css">
             #datePicker
             {
                 display:none;
                 position:absolute;
                 border:solid 2px black;
                 background-color:white;
             }
             .content
             {
                 width:400px;
                 background-color:white;
                 margin:auto;
                 padding:10px;
             }
             html
             {
                 background-color:silver;
             }
         </style>
         <title>Calendar with JavaScript</title>
     </head>
     <body>
         <form id="form1" runat="server">
         <div class="content">
         
         <asp:Label
             id="lblEventDate"
             Text="Event Date:"
             AssociatedControlID="txtEventDate"
             Runat="server" />
         <asp:TextBox
             id="txtEventDate"
             Runat="server" />
         <img src="Source/Calendar.gif" onclick="displayCalendar()" />
         <div id="datePicker">
         <asp:Calendar
             id="calEventDate"
             OnSelectionChanged="calEventDate_SelectionChanged" 
             Runat="server" />
         </div>
     
         <br />
         <asp:Button
             id="btnSubmit"
             Text="Submit"
             Runat="server" OnClick="btnSubmit_Click" />
     
         <hr />
     
         <asp:Label
             id="lblResult"
             Runat="server" />
             
         </div>
         </form>
     </body>
     </html>