- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2020 08:54 AM
Hi,
can anyone please help me how to get the URL using server side script
I tried GlideURL but i think this is client side api can anyone what method to use from server side to retireve the url
Solved! Go to Solution.
- 21,675 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2020 09:03 AM
Shaik,
Try the code below on server-side
// User's URL
gs.getProperty("glide.servlet.uri") + gs.action.getGlideURI();
//Session URL
gs.getSession().getUrlOnStack();
Thnaks,
Derrick Johnson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2020 09:03 AM
Shaik,
Try the code below on server-side
// User's URL
gs.getProperty("glide.servlet.uri") + gs.action.getGlideURI();
//Session URL
gs.getSession().getUrlOnStack();
Thnaks,
Derrick Johnson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2020 09:04 AM
Hi,
Try this
gs.getProperty("glide.servlet.uri") + gs.action.getGlideURI()
-Anurag