2

如何从日期选择器中获取会话?

对于我所有的文本框,我使用:

 Session["location"] = DropDownList1.SelectedItem.Text;
 Session["time"] = DropDownList2.SelectedItem.Text;
 Session["day"] = DropDownList3.SelectedItem.Text;  
 Session["IsChauffeurUsed"] = DropDownList4.SelectedItem.Text;

但是对于我的文本框日期选择器,当我编写代码时

 Session["date"] = datepicker.Text;

它给了我一个错误,当前上下文不存在。日期选择器文本框是:

<div class="demo"><p>Date: <input type="text" id="datepicker"></p></div>

希望你能帮忙。

谢谢。

4

1 回答 1

2

设置runat=server属性以将 html 标记转换为 Html 服务器控件。

<input type="text" runat="server" id="datepicker">

并使用value属性,因为它现在是 ASP.NET Web 服务器控件。

Session["date"] = datepicker.Value;

编辑:这对我来说非常有效。

<head runat="server">
    <title></title>
    <link rel="Stylesheet" type="text/css" href="http://code.jquery.com/ui/jquery-ui-git.css" />
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
    <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js"></script>
    <script type="text/javascript">
        $(function () {
            $("#datePicker").datepicker();
            $("#<%=TextBox1.ClientID %>").datepicker();
        });
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <input type="text" id="datePicker" runat="server" />
        <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
    </div>
    </form>
</body>
于 2012-08-29T03:13:23.123 回答