ajax日历扩展器月份名称显示

时间:2013-04-15 07:01:46

标签: asp.net ajax date calendar

我在文本框中添加了扩展程序以选择日期。它显示相应月份的数量的日期。有没有办法获得月份名称而不是月份号码?因为我得到04-04-13我想要它作为04年4月4日。提前致谢

我的代码是

<asp:TextBox ID="txtInvDate" runat="server" Height="21px" Width="88px"
        ontextchanged="txtInvDate_TextChanged" AutoPostBack="True"></asp:TextBox>
    <asp:CalendarExtender ID="txtInvDate_CalendarExtender"
        runat="server" TargetControlID="txtInvDate" Format="dd-MM-yyyy">
</asp:CalendarExtender>

1 个答案:

答案 0 :(得分:1)

您可以尝试以下格式:

<asp:CalendarExtender ID="txtInvDate_CalendarExtender" runat="server" TargetControlID="txtInvDate" 
    Format="dd-MMM-yyyy" >
</asp:CalendarExtender>

Custom Date and Time Format Strings

特别是:The "MMM" Custom Format Specifier

请注意,它取决于服务器上的当前文化。