When you subtract two dates you end up with a TimeSpan object. So,
lblPageCreationTime.Text = start_time - end_time is probably saying
something like the types are incompatible? Try doing something like this:
lblPageCreationTime.Text = (start_time - end_time).ToString()