When somebody clicks on my google adwords link like this:
http://www.myshoppingsite.com/product/rubberball.aspx?promo=promo123
I want my aspx page to read the "promo" parameter, hit the database to pull back some data, then display to the user a nice jquery type popup window over top of the product page. The user can read all about the promotion, then close that pop up and be at the product page they wanted to go to.
I'm not sure how to do this...Do I read the parameter and get the data from the client side (via webservice or page method), or do I get the data and call the javascript from server side?
I have created jquery popups before, but the data has always been on the client side already. I want to display a popup but get the data from a database.
any ideas?