I want to access from a URL to a certain page of a WepApp with BANano, currently all the pages are loaded in the same MainPageHolder, if I have understood correctly I have to use BANanoRouter to access that page through URL (with parameters), it is right?
dim params as Map = BANano.GetURLParams(BANano.Location.GetHref)
log(params.get("key"))
log(params.get("name"))
BANanoRouter can handle more complex things like paths but note that is a 'virtual router', using hashing (note the # which is required in the urls when typig them in the browser)
dim params as Map = BANano.GetURLParams(BANano.Location.GetHref)
log(params.get("key"))
log(params.get("name"))
BANanoRouter can handle more complex things like paths but note that is a 'virtual router', using hashing (note the # which is required in the urls when typig them in the browser)