Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

In ASP,

the "POST" data is accessed with Request("Type")

the "URL" data is accessed with Request.QueryString("Type").

The link by Leb "asp101.com" shows how each would be applied in the number_srch.asp page.

Hope this helps.

Garry

  • Author

sorry... I should have mentioned that the web site is not mine, it is a site that the client uses and I am trying to give them a shortcut in FMP that will look up the number for them.

You should be able to POST a Form, to that site, from an FM solution.

You can have more than one Form in a page. You can also use some Javascript to determine which is sent where and when!

Use one like this:

<form name="cpsoform" method="post" action="http://www.cpso.on.ca/Doctor_Search/number_srch.asp">

<input type="hidden" name="Type" value="CPSONUM">

<input type="hidden" name="SCR" value="FIRST">

<input type="hidden" name="CPSONO" value="[FMP-Field:cpsono]">

</form>

....

<a href="Javascript:document.cpsoform.submit();" target="_blank">Goto CPSO</a>

If you want to make this a link from a listing, make these changes:

<input type="hidden" name="CPSONO" value="">

.....

[FMP-Record]

<a href="Javascript:document.cpsoform.CPSONO.value="[FMP-Field:cpsono]";document.cpsoform.submit();" target="_blank">Goto CPSO</a>

[/FMP-Record]

All the best.

Garry

You will not be able to use a string!

The way the "asp" script is written will not allow the use of a string. This is generally for security reasons.

The only way is via a Form. You can check the Form at:

http://www.clarsys.com.au/cpso.html

Good Luck.

Garry

  • Author

Thanks for all you help!

Create an account or sign in to comment

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.