Is Postback treated like a pageview on Google Ads or CPM ads?

Is postback (asp.net) treated as pageview by google ads or CPM ads, or ignored?

How are Google ads different from postbacks and page views?

+1


source to share


2 answers


( Update : Sorry for mixing Google AdSense with Google Analytics. Not sure if this works the same as it does for adsense.)

Since the Google Analytics snippet is running on the client, it will run every time the page is displayed in the browser, even if it was caused by writeback.



You can change this behavior by only including Google Analytics code snippets if the current request is not a postback. For example, you can put the google snippet in a custom control and set the control's Visible property to false in case of postbacks.

+2


source


Google adsense points to the page whenever its javascript is executed. After postback the HTML from the server reloads to the browser, this results in javascript execution for Google adsense, so it ticks again for your page.



However, Google Analytics reports this is addressed by filtering out duplicate page views. You will see unique visitors, unique page views, etc. I believe adsense uses the same techniques.

+1


source







All Articles