Rob's TIMSS Blog

My discoveries and ramblings of TIMSS/Personify.

Wednesday, September 10, 2008

Personify: Passing info to a Web browser URL

One of the things I like to show off with the Partner integrations in Personify is pulling up a customer in Personify and having a tab that has a Web browser window which pulls up that customer's information in the partner application.


This is done by simply creating a tab with a Web Browser control on it. The key is in the Code behind the screen and when calling the Open method with the the master customer id added to the URL.

WebBrowser1.Open(String.Concat("http://tma.higherlogic.com/Personify.aspx?MasterCustomerId=", Context.MasterCustomerId, "&SubCustomerId=", Context.SubCustomerId))


So this will open a tab with the current customer's information. VERY COOL!

Obviously the URL you are calling will need to know what to do with the master customer id to pull display their informaiton. You will also want include code to refresh the browser window when you change customers.

Applies to: Personify

0 Comments:

Post a Comment

<< Home