This post describes how detect for ASP.Net page postback from Javascript. I needed to know if it was the first launch of the page or a postback from Javascript. I did this by adding a hidden field to the page:
In the page load event, I then set the value of this field to be the postback status:
and then I could obtain the value (true or false) in Javascript/JQuery using the following:

