Creating Ads based on user landing
Web Server forum
Back To The Forum Home!Search!Private Messaging System

Web Server Talk Web Server Talk > Web Servers reviews > Microsoft Commerce Server > Content Selection Framework > Creating Ads based on user landing




Pages (2): [1] 2 »   Last Thread   Next Thread Next
  Show Printable Version Email this Page Subscribe to this Thread      Post New Thread    Post A Reply      

    Creating Ads based on user landing  
ukeu


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-06-06 12:19 PM

Hi,
I have different types of users landing on the  CS retail site. I need
to give different ads for these types. All the users are not registered.
So I cant use a profile to set the target expression. Is there any way in
which I can crack this using campaign manager. Please help






[ Post a follow-up to this message ]



    RE: Creating Ads based on user landing  
Ravi Shankar


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-06-06 06:20 PM

ukeu,

You can still use the profile object.. he "usertype" field (Anonymous or
Registered) can be used as your targeting condition ! What is the third type
of user ?
--
Ravi Shankar


"ukeu" wrote:

> Hi,
>    I have different types of users landing on the  CS retail site. I need
> to give different ads for these types. All the users are not registered.
> So I cant use a profile to set the target expression. Is there any way in
> which I can crack this using campaign manager. Please help
>
>





[ Post a follow-up to this message ]



    RE: Creating Ads based on user landing  
ukeu


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-06-06 06:20 PM

Hi Ravi,
Thanks for your inputs. I do not currently enter an anonymous
user's details on the user object table. I maintain them at the cookie. So
anyway I can assign an ad to the user type?






[ Post a follow-up to this message ]



    RE: Creating Ads based on user landing  
Ravi Shankar


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-08-06 12:19 PM

Hi ukeu,

The basic behaviour of the site is to create a userprofile based on the
cookie set. You would have modified the code to prevent anonymous profiles
from being saved to the DB. This does not imply that the authentication
objects do not internally create profile objects for the duration of the
visit. You can verify this by checking if the CommerceContext.UserProfile
object is null or nothing.... if this is set then you can assign this to the
targeting context and check for anonymous users vrs registered users in this
profile. That would resolve your problem.

--
Ravi Shankar


"ukeu" wrote:

> Hi Ravi,
>         Thanks for your inputs. I do not currently enter an anonymous
> user's details on the user object table. I maintain them at the cookie. So
> anyway I can assign an ad to the user type?
>
>





[ Post a follow-up to this message ]



    RE: Creating Ads based on user landing  
ukeu


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-09-06 12:18 PM

Thanks Ravi. Let me explain my problem. I have various kinds of users, one
type who come from another partner site, one type who are registered
users, and a few other user types like these. I identify the user type of
a user only after a user lands on the type. Our client wants to have
various image links(ads) to be displayed to different user types. This
they want to define using campaign manager. How can this be achieved? Is
this possible using targetting context? Kindly explain.






[ Post a follow-up to this message ]



    RE: Creating Ads based on user landing  
Ravi Shankar


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-10-06 04:53 PM

thinking aloud ...

I'd extend the UserProfile object to create a field called "Referrer URL"
When I land on the home page of your site, I'd find out who the referrer was
and store it into thi value for the anonymous profile created.... and use th
e
anonymous profile for content targetting. If this anonymous user logs in, I'
d
convert this anonymous user profile to the logged in user profile (and copy
the "Referrer URL" also)...

Then I'd be able to create add conditions where I can check
1. If the current user is an anonymous user
2. OR the current user is a registered user
3. Anonymous user referred to me by Site A or B or whatever
4. Registered user referred to me by site A or B...

Would that address your requirement ?
--
Ravi Shankar


"ukeu" wrote:

> Thanks Ravi. Let me explain my problem. I have various kinds of users, one
> type who come from another partner site, one type who are registered
> users, and a few other user types like these. I identify the user type of
> a user only after a user lands on the type. Our client wants to have
> various image links(ads) to be displayed to different user types. This
> they want to define using campaign manager. How can this be achieved? Is
> this possible using targetting context? Kindly explain.
>
>





[ Post a follow-up to this message ]



    RE: Creating Ads based on user landing  
Ravi Shankar


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-10-06 06:17 PM

thinking aloud ...

I'd extend the UserProfile object to create a field called "Referrer URL"
When I land on the home page of your site, I'd find out who the referrer was
and store it into thi value for the anonymous profile created.... and use th
e
anonymous profile for content targetting. If this anonymous user logs in, I'
d
convert this anonymous user profile to the logged in user profile (and copy
the "Referrer URL" also)...

Then I'd be able to create add conditions where I can check
1. If the current user is an anonymous user
2. OR the current user is a registered user
3. Anonymous user referred to me by Site A or B or whatever
4. Registered user referred to me by site A or B...

Would that address your requirement ?
--
Ravi Shankar


"ukeu" wrote:

> Thanks Ravi. Let me explain my problem. I have various kinds of users, one
> type who come from another partner site, one type who are registered
> users, and a few other user types like these. I identify the user type of
> a user only after a user lands on the type. Our client wants to have
> various image links(ads) to be displayed to different user types. This
> they want to define using campaign manager. How can this be achieved? Is
> this possible using targetting context? Kindly explain.
>
>





[ Post a follow-up to this message ]



    RE: Creating Ads based on user landing  
ukeu


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-12-06 08:48 AM

Hi Ravi: The solution sounds fine but the only catch here would be
anonymous users-Our client doesnt want us to store anonymous profiles in
the user object table  Targetting context cant be used in this case
right??






[ Post a follow-up to this message ]



    RE: Creating Ads based on user landing  
ukeu


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-12-06 12:20 PM

Hi Ravi: The solution sounds fine but the only catch here would be
anonymous users-Our client doesnt want us to store anonymous profiles in
the user object table  Targetting context cant be used in this case
right??






[ Post a follow-up to this message ]



    RE: Creating Ads based on user landing  
Ravi Shankar


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-12-06 02:43 PM

In my previous to previous response I had mentioned that storage of a profil
e
is driven through code. So in your authentication moule you'd check if this
is an anonymous profile.. if it is don't store it (and it will not get into
the UserObject Table) but it'd exist as a profile assigned to the
CommerceContext.UserProfile for the duration of that visit. So where so you
see a problem in this ????

And when the user authenticates, you replace the anonymous profile in
CommerceContect with the authenticated Users profile and copy the "Referrer"
from the anonymous profile into the commerce context authenticated user
profile.
--
Ravi Shankar


"ukeu" wrote:

> Hi Ravi: The solution sounds fine but the only catch here would be
> anonymous users-Our client doesnt want us to store anonymous profiles in
> the user object table  Targetting context cant be used in this case
> right??
>
>





[ Post a follow-up to this message ]



    Sponsored Links  




 





   All times are GMT. The time now is 12:06 PM.      Post New Thread    Post A Reply      
Pages (2): [1] 2 »   Last Thread   Next Thread Next


Most Popular forums 

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is OFF
 
Medical and Health forum | Computer Games Reviews | Graphics design forum

Back To The Top
Home | Usercp | Faq | Register