Thanks Kevin for replying. What you suggested is using properties which I don’t want in that way. I want to use the URL to send parameters to another wisej page.
Hi Carlos, Can you please link the thread you’re referring to? When you say another Wisej page are you referring to another instance of Page in your application or another separate application? If you are referring to a separate application you can use Application.Navigate(“url/of/my/app?somearg=value”); or if you’re referring to another Page instance within your application you can do what Kevin mentioned above or use Application.Session[“someVal”] = “something” to store a dynamic dictionary value within the current session. You can use Application.QueryString to read the URL arguments. Best, Levie
Hey Levie, thanks for your comment. Sorry if I was not clear in my question. When I say another Wisej page, I am referring to another instance of page in the same application. Look at the thread https://wisej.com/support/question/url-arguments someone posted a small sample to receive URL parameters, BUT I cannot find the way to SEND parameters, unless this is not possible in Wisej. I want to use the URL because that lets you send the link to another user so it can be loaded with the parameters directly.
Maybe you’re looking for Application.Hash? You can set and read it anywhere in the application. Otherwise you can use Application.Navigate(“?something=value”) to update the QueryString. Best, Levie
Application.Navigate() is generally used to navigate to external webpages. Application.Hash changes the browser URL’s hash on the client, it’s useful for deep linking and fires the Application.HashChanged event. HTH, Levie