Web Page Control of the Forms File
If you set the class attribute of the control tag to web_page, then you must specify the url attribute in the control tag. The following code illustrates usage of the web_page control:
<control class="web_page" id="linkedin_search">
<url>http://www.linkedin.com/</url>
</control>
You can specify a static or a dynamic URL as the value of the url attribute. If the URL is dynamic, then JavaScript supports it. For example, you can present a dynamic personal page for a business contact on the Contact form. The following is an example of this JavaScript:
if (!is_new)
form.linkedin_search.navigate = "http://www.linkedin.com/pub/dir/?last=" +
form.item['Last Name'] + "&first=" + form.item['First Name'];
If the url attribute is not set, then Siebel CRM Desktop loads the about:blank page, by default.