What do we mean by Partial post back in a page and complete page posting
- What are the events that are Fired when a page is being Post backed
- What are the events that are fired when a page is being Partially Post backed
What are the events that are fired when a page is being Partially Post backed.
My question is when I am trying to call a JavaScript function from code behind .
When i use
Page.ClientScript.RegisterStartupScript(this.GetType(),"Call my function","MyFunction()",true);
it is not working where as when i use
Page.ClientScript.RegisterClientScriptBlock
it is working for sure