vote up 4 vote down star

I need to run a JavaScript function onLoad(), but only do it if the page loaded the first time (i.e. is not the result of a postback).

Basically, I need to check for IsPostBack in JavaScript.

Thank you.

flag

I edited this question to reflect the true intent of roman's original question and which answer he selected as accepted, since there was some confusion as to the platform this question was targeted at. – Jason Bunting Sep 12 '08 at 19:23

5 Answers

vote up 4 vote down check

Server-side, write:

if(IsPostBack)
{
   // NOTE: the following uses an overload of RegisterClientScriptBlock() 
   // that will surround our string with the needed script tags 
   ClientScript.RegisterClientScriptBlock(GetType(), "IsPostBack", "var isPostBack = true;", true);
}

Then, in your script which runs for the onLoad, check for the existence of that variable:

if(isPostBack) {
   // do your thing
}


You don't really need to set the variable otherwise, like Jonathan's solution. The client-side if statement will work fine because the "isPostBack" variable will be undefined, which evaluates as false in that if statement.

link|flag
Thanks for rehashing my exact answer... – FlySwat Sep 12 '08 at 18:47
LOL - rehashing? While you were answering, so was I. I had not idea you had answered it (we were only a minute or two apart). It's not like it is that unique of a solution, it is pretty much the way to do it. By the way, my comment about yours was an edit after I answered - you can see the history – Jason Bunting Sep 12 '08 at 18:50
Btw, you need to include a Script block within your string on RegisterClientScriptBlock, as per MSDN. – FlySwat Sep 12 '08 at 18:55
No, I don't. Maybe you need to read about the overload I used, as per MSDN. :) – Jason Bunting Sep 12 '08 at 18:57
Ah, missed the boolean at the end, that will learn me for not scrolling over the code. – FlySwat Sep 12 '08 at 19:00
show 3 more comments
vote up 2 vote down

You could put a hidden input on the page, and after the page loads, give it a value. Then you can check that field, if it was in the post data, it's a postback, otherwise it is not.

There were two solutions that used server side code (ASP.NET specific) posted as responses. I think it is worth pointing out that this solution is technology agnostic since it uses client side features only, which are available in all major browsers.

link|flag
It is true that your solution is agnostic, but the question, based on the way this was tagged, was specific to ASP.NET. Also, since my response was accepted as the answer, Roman is obviously using ASP.NET – Jason Bunting Sep 12 '08 at 19:20
See my comment on why I edited this question to provide more clarity. I left a comment on the original question. – Jason Bunting Sep 12 '08 at 19:23
vote up 1 vote down

Here is one way (put this in Page_Load):

if (this.IsPostBack)
{
    Page.ClientScript.RegisterStartupScript(this.GetType(),"PostbackKey","<script type='text/javascript'>var isPostBack = true;</script>");
}

Then just check that variable in the JS.

link|flag
All you did was take my answer, and remove the else clause. – FlySwat Sep 12 '08 at 18:48
Very close, but Jason had more details - up vote for you – roman m Sep 12 '08 at 18:48
Again, I didn't see your answer until I posted mine. And then I saw yours, and edited mine. Get a life. – Jason Bunting Sep 12 '08 at 18:50
It's not like there is a contest I am trying to win - what motivation would I have for copying your answer? Don't flatter yourself. – Jason Bunting Sep 12 '08 at 18:52
By the way, the other proof I didn't copy yours is that you forgot about the script tags originally. If you look at my answer, I am using an overload of RegisterStartupScript which will include that automagically. :) – Jason Bunting Sep 12 '08 at 18:56
show 1 more comment
vote up 0 vote down

You can create a hidden textbox with a value of 0. Put the onLoad() code in a if block that checks to make sure the hidden text box value is 0. if it is execute the code and set the textbox value to 1.

link|flag
vote up -1 vote down

Lots of options here.

For a pure JS solution, have your page submit to itself, but with additional URL parameter (mypage.html?postback=true) - you can then get the page url with window.location.href, and parse that using a split or regex to look for your variable.

The much easier one, assuming you sending back to some sort of scripting language to proces the page (php/perl/asp/cf et. al), is to have them echo a line of javascript in the page setting a variable:

<html>

<?php
if ($_POST['myVar']) {
    //postback
    echo '<script>var postingBack = true;</script>';
    //Do other processing
} else {
    echo '<script>var postingBack = false;</script>'
 } ?>
<script>
function myLoader() {
     if (postingBack == false) {
          //Do stuff
     }
 }

<body onLoad="myLoader():"> ...
link|flag
This was an ASP.NET-specific question, but I don't think you should receive a downvote (I don't know who did it) for posting PHP solution - your idea is correct even if the language is not. :) – Jason Bunting Sep 12 '08 at 18:54
Admitidly the original question was tagged asp.net, but it was not phrased as such. The problem and all but the accepted answer are language agnostic. The accepted answer is correct in terms of the rephrased question but as with most .net stuff, protects the developer from the underlying mechanics. – iAn Sep 12 '08 at 20:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.