Hello,
I understand, you can set your InitialPage from ABMApplication.bas module which is the page that a visitor sees first. I also understand that you can create a page from this module and I tried it. The problem is, when I open the webapp, the page appears, but it refreshes again and again in a matter of less than a second or so. Then, I watched the log as it refreshes, I see about two messages one says "disconnected."
My intention is to use it as the index or the first page such as login/sign up page before going to other pages.
Is there anything that I must set up first which is not ordinarily done in other pages which is a copy of the ABMPageTemplate?
I just added the following codes at the ConnectPage() of the module.
Dim lbl As ABMLabel
lbl.Initialize(AppPage, "lbl", "The index page", ABM.SIZE_H1, False, "")
AppPage.Cell(1,1).AddComponent(lbl)
I understand, you can set your InitialPage from ABMApplication.bas module which is the page that a visitor sees first. I also understand that you can create a page from this module and I tried it. The problem is, when I open the webapp, the page appears, but it refreshes again and again in a matter of less than a second or so. Then, I watched the log as it refreshes, I see about two messages one says "disconnected."
My intention is to use it as the index or the first page such as login/sign up page before going to other pages.
Is there anything that I must set up first which is not ordinarily done in other pages which is a copy of the ABMPageTemplate?
I just added the following codes at the ConnectPage() of the module.
Dim lbl As ABMLabel
lbl.Initialize(AppPage, "lbl", "The index page", ABM.SIZE_H1, False, "")
AppPage.Cell(1,1).AddComponent(lbl)
Last edited: