Please take a look at the below URL - https://www.event-reg.biz/oem-Koelnmesse/OnlineExhListing
In the sort by dropdown, you can select "Exhibitor A to Z" and press search.
After when the data appears, they have a javascript function for each link
(javascript:__doPostBack('ctl00$MainContent$grdExhList$ctl00$ctl04$lnkExhLink','')
)
that executes in the browser to create a unique URL.
For example
https://www.event-reg.biz/oem-Koelnmesse/OnlineExh?e=/v5urzZW/hm8SuWqRTOYlg==&p=https%3a%2f%2fwww.event-reg.biz%2foem-Koelnmesse%2fOnlineExhListing
this URL gets created for the above Javascript function call.
I have done research about __doPostBack function but that doesn't seem to help. Any kind of help or suggestion is appreciated.
Thank you in advance.
Sequence of events:
__doPostBack
method which will invoke a POST to the URL:
"https://www.event-reg.biz/oem-Koelnmesse/OnlineExhListing" and
passes the __EVENTTARGET with value:
"ctl00$MainContent$grdExhList$ctl00$ctl04$lnkExhLink", one among the many key/values posted.
You can easily see the flow by intercepting the traffic using fiddler and see it for yourself: