T
Tom Petersen
Brand new to .aspx, and just modifying code.
I have this:
writer.WriteLine("DTSTART:" &
beginDate.ToUniversalTime.ToString("yyyyMMdd\THHmmss\Z") )
I am grabbing the date and time from two fields and just need to combine
them into one string for the above to work and I don't know how in .aspx.
Here are my fields I am trying to combine, it also look slike there
shouldn't be a space between them, looking at the above lines:
Dim beginDate as Date = Request.Form.GetValues("date")(0)
Dim beginTime as StartTime = Request.Form.GetValues("StartTime")(0)
So in other words, I need to append StartTime to beginTime so the whole
value will show up. This is for making an Outlook Celendar appointment,
BTW.
I have this:
writer.WriteLine("DTSTART:" &
beginDate.ToUniversalTime.ToString("yyyyMMdd\THHmmss\Z") )
I am grabbing the date and time from two fields and just need to combine
them into one string for the above to work and I don't know how in .aspx.
Here are my fields I am trying to combine, it also look slike there
shouldn't be a space between them, looking at the above lines:
Dim beginDate as Date = Request.Form.GetValues("date")(0)
Dim beginTime as StartTime = Request.Form.GetValues("StartTime")(0)
So in other words, I need to append StartTime to beginTime so the whole
value will show up. This is for making an Outlook Celendar appointment,
BTW.