Выбор даты jQuery не работает в Visual Studio 2010 - PullRequest
1 голос
/ 24 января 2012

enter image description here

Привет всем, что я проделал работу, касающуюся date picker в visual studio 2010, которая отлично работает в VS2005 и VS2008 ..

моего образцаis

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">
    <title></title>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/jquery-ui.min.js"></script>

    <script type="text/javascript" src="js/jquery.datepick.js"></script>

    <style type="text/css">
        @import "css/jquery.datepick.css";
    </style>

    <script type="text/javascript">
        $(document).ready(function () {
            $('<%= txtHiredate.ClientID %>').datepick({ showOnFocus: false, showTrigger: '#calImg' });
        });
    </script>

    <script type="text/javascript">
        $(document).ready(function () {
            $('<%= txtDateofBirth.ClientID %>').datepick({ showOnFocus: false, showTrigger: '#Img1' });
        });
    </script> </head> <body>
    <form id="form1" runat="server">
    <div>
    <asp:Button ID="Button1" runat="server" Text="Button" ValidationGroup="personal"
        Style="left: 459px; position: absolute; top: 171px" />
                <asp:Label ID="lblDate" runat="Server" Text="HireDate" style="left: 321px; position: absolute; top: 98px"></asp:Label>

    <asp:Label style="LEFT: 310px; POSITION: absolute; TOP: 133px" id="Label1" runat="Server" Text="DateofBirth"></asp:Label>
                <asp:TextBox ID="txtHiredate" runat="server" ValidationGroup="personal" Style="left: 397px;
                    position: absolute; top: 96px" />


                <div style="display: none;">
                    <img id="calImg" src="images/calendar.gif" alt="Popup" class="trigger" style="left: 564px;
                        position: absolute; top: 101px" />
                </div>

    <asp:TextBox ID="txtDateofBirth" runat="server" ValidationGroup="personal" Style="left: 398px;
        position: absolute; top: 131px" />
    <asp:CustomValidator ID="CustomValidator1" runat="server" ClientValidationFunction="validatehiredate"
        ControlToValidate="txtDateofBirth" ValidationGroup="personal" Display="Dynamic"
        Style="left: 596px; position: absolute; top: 132px">can not hire guy less than 18 yrs</asp:CustomValidator>
    <div style="display: none;">
        <img id="Img1" src="images/calendar.gif" alt="Popup" class="trigger" style="left: 568px;
            position: absolute; top: 136px" />
    </div>
    </form> </body> </html>

Но когда я открываю vs2005 решение в Vs2010, появляется сообщение относительно web.config, если я нажимаю на ok и запускаю, это работает нормально.Но если я создаю новое решение и работаю над этим, он не показывает соответствующие изображения .. Может ли кто-нибудь мне помочь ..

1 Ответ

0 голосов
/ 25 января 2012

Попробуйте согласно ниже

 $('<%= txtHiredate.ClientID %>')
 $('<%= txtDateofBirth.ClientID %>')

до

$('#<%= txtHiredate.ClientID %>')
$('#<%= txtDateofBirth.ClientID %>')
...