This topic is locked
[SOLVED]

how to pick up requesting url parameters from website address?

3/4/2024 6:43:58 AM
ASPRunner.NET General questions
D
david powell author

Hi All,

I would like to send a customer a link, along the lines of

https://question.com?uid=334444444

which links to a website without any authentication; the landing page is a form, which will display content using a where criteria of the uid from the requesting url.

how can I pick up the url parameters, or just the whole url would do and I could parse it, on loading up this style of website?

David

T
Tim 3/4/2024

Hey David,

You can grab data from the posting URL this way:

MVCFunctions.postvalue("uid")

Here is a link to a help doc that might be useful:

https://xlinesoft.com/asprunnernet/docs/show_a_list_of_customer_orders.htm

Tim

D
david powell author 3/4/2024

Perfect, thanks Tim.