about Postback

  • Thread starter Thread starter Shalva
  • Start date Start date
S

Shalva

Hi,

when I submit page from client-side script

window.navigate("abc.aspx")

the IsPostBack property of Page always is false.

why ?

Thanks,
Shalva
 
Shalva said:
Hi,

when I submit page from client-side script

window.navigate("abc.aspx")

the IsPostBack property of Page always is false.

why ?

Thanks,
Shalva
navigate does a GET for the page, not a POST.
 
Back
Top