Calendar Date Format
- From: newsgroups.jd@xxxxxxxxx
- Date: 3 Apr 2006 09:53:41 -0700
Thanks in advance -
Trying to get this format returned when selecting a date on a calendar
and having a little difficulty
Format needs to be mmyy/Dayd
Example
Feb 3, 2004 would return 0204\Day3
Dec 15, 2002 would reurn 1202\Day15
Code I have tried
This way actually almost works cept the "y" in "Day" is pulling a 6
Protected Sub Calendar1_SelectionChanged(ByVal sender As Object, ByVal
e As System.EventArgs) Handles Calendar1.SelectionChanged
Dim selection As String = Format(Calendar1.SelectedDate(),
"MMyy" & "\Day" & "d")
Response.Redirect("\\server\report\" & selection & ".XLS")
End Sub
Protected Sub Calendar1_SelectionChanged(ByVal sender As Object, ByVal
e As System.EventArgs) Handles Calendar1.SelectionChanged
Dim monthyear As String = Format(Calendar1.SelectedDate(),
"MMyy")
Dim day As String = Format(Calendar1.SelectedDate(), "d")
Dim selection As String = monthyear & "\Day" & day
Response.Redirect("\\server\report\" & selection & ".XLS")
End Sub
Protected Sub Calendar1_SelectionChanged(ByVal sender As Object, ByVal
e As System.EventArgs) Handles Calendar1.SelectionChanged
Dim monthyear As String = Format(Calendar1.SelectedDate(),
"MMyy")
Dim day As String = Format(Calendar1.SelectedDate(), "d")
Dim selection As String = monthyear & "\Day" & day
Response.Redirect("\\server\report\" & selection & ".XLS")
End Sub
The response redirect is another problem, but cant move onto that
problem til I get the formating working out...
Thanks!!
JD
.
- Follow-Ups:
- Re: Calendar Date Format
- From: Jim Hughes
- Re: Calendar Date Format
- Prev by Date: Re: Can't get rid of references
- Next by Date: Reflection Question and MDI question
- Previous by thread: Exposing methods of controls in collection
- Next by thread: Re: Calendar Date Format
- Index(es):
Relevant Pages
|