Is a postback (asp.net) considered as a pageview by google ads or CPM ads or it is ignored?
How does google ads differentiate between a postback and a pageview?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
(Update: Sorry I mixed google adsense with google analytics. Not sure if this works the same way for adsense.)
Since the google analytics code snippet runs on the client, it will be executed every time a page is displayed in a browser, even if this was caused by a postback.
You could change this behavior by only including the google analytics code snippets if the current request is not a postback. For example, you could put the google code snippet into a user control and set the control’s Visible property to false in the case of a postback.