日付を選択するために、テキスト ボックスにエクステンダーを追加しました。対応する月の番号を示す日付。月番号の代わりに月名を取得する方法はありますか? たとえば、私は 04-04-13 として取得します。私は 04-Apr-13 として取得します。前もって感謝します
私が持っているコードは
<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>