I am working on my lovely calendar still and want to send the results in a link which opens up another browser window.
Here is my code, any suggestions?
Sub Date_selected(sender as Object,e as EventArgs)
Dim themonth as String
Dim theday as String
Dim theyear as String
themonth = Calendar2.SelectedDate.month() - 1
theday = Calendar2.SelectedDate.day()
theyear = Calendar2.SelectedDate.year()
Response.Redirect(" & yourid.text & "/calendar/?cmd=new&mm=" & themonth & "&dd=" & theday & "&yy=" & theyear & ""
End Sub
Here is my code, any suggestions?
Sub Date_selected(sender as Object,e as EventArgs)
Dim themonth as String
Dim theday as String
Dim theyear as String
themonth = Calendar2.SelectedDate.month() - 1
theday = Calendar2.SelectedDate.day()
theyear = Calendar2.SelectedDate.year()
Response.Redirect(" & yourid.text & "/calendar/?cmd=new&mm=" & themonth & "&dd=" & theday & "&yy=" & theyear & ""
End Sub