Change multipage page name

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
Danny
User
Posts: 138

Change multipage page name

Post by Danny »

Hi,

How do you change the multipage Page Name by the server event Page_Rendered in the Add en Edit page?

Example is not working:

MultiPages[4].Caption = "123";

Regards,


MichaelG
User
Posts: 1095

Post by MichaelG »

You can set the table caption in Page_Render server event by:

Language.SetTablePhrase("Table", "TblPageCaption4", "Page 4");


Post Reply