html link

Is there a very simple and easy way to create a HTML link in Appliction Designer (function like a hyperlink)

What I want to do is have a line of text that is a hyperlink to a specific site. The link and text will be static. For example I want to have the following:

Please enable pop-ups for the ABC system

In Application designer I want to link to

I would prefer not to have a method passed to an adaptor.

Hi Demos,

you can use an control for this.
You initialize your link in the Natural program once. When clicking on the link no server roundtrip will be done.

Example:
page layout snippet:



The Natural code looks like this:

DEFINE DATA LOCAL
1 MYLINK (A) DYNAMIC
END-DEFINE
*
MYLINK:=‘TEST
*
PROCESS PAGE …

Best Regards,
Christine

…one correction to my previous reply:

Somehow the href of the “MYLINK” variable got removed when submitting my reply.

It should be avalid HTML <a href=
Like:
<a href="http:// … TEST

Best Regards,
Christine

Thanks for the info Christine. I have a follow up question.

Is it possible to use this method in NATURAL to modify the NATLOGON screen? I could not find any Natural Code that “talks” to NATLOGON.

Thanks.

Hi Demos,

It’s not clear to me what you would like to do. Why do you want navigate to the NATLOGON page? When do you want to talk to the NATLOGON page, when the application is finished? What is your application scenario?

Best Regards,
Christine