I would like to know how I can execute Javascript before Page_Load event (if that’s possible of course). I am trying to get user’s local time with Javascript and I am getting correctly, but I want to get that before I am at the page_load event because I want to play with that value in the page_load event.
Is that possible?
I would like to know how I can execute Javascript before Page_Load event (if
Share
Not possible. Page_Load happens on the server before a page is rendered and sent to the client where the Javascript is executed.