如何从HTML5中的文本框中读取文本到VB?

时间:2013-06-14 12:17:27

标签: vb.net html5 datepicker

我正在使用Microsoft Visual Studio Express制作网页。

我使用jQuery来创建date picker,我想从中选择一个日期。

我想将日期读入VB中的字符串,以便我可以修改它。

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title></title>
    <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/themes/base/jquery-ui.css"
        type="text/css" media="all" />
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js" type="text/javascript"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"
        type="text/javascript"></script>
    <script type="text/javascript">
        $(function () {
            $('#<%= TextBox1.ClientID  %>').datepicker();
        });
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
    </form>
</body>

</html>

VB我尝试过:

Partial Class _Default
    Inherits System.Web.UI.Page

    Dim temp As String

    temp = TextBox1.value

End Class

为什么不起作用?

我该怎么做?

1 个答案:

答案 0 :(得分:1)

我刚尝试了使用C#asp.net的示例,并且有2个更改,我能够看到日期... 1.在文本框中添加AutoPostBack =“True” 2. in .cs使用TextBox1.Text(对C#有效,不确定VB)