Multiple URL parameter

They have: 39 posts

Joined: Jun 2000

I am passing two url parameters using this code :

"Delete.asp?TimeEntryKey=" & rsList("TimeEntryKey") & "ResourceID = " & rsList("ResourceID")

to get the first parameter I am using

<?php
response
.write(request("TimeEntryKey"))
?>

but I am getting back the value of first parameter, title of 2nd parameter and value of first parameter e.g.

5ResourceID = LIFT

How can I just get the value of first parameter e.g. 5

Thanks

Mark Hensler's picture

He has: 4,048 posts

Joined: Aug 2000

should be:

"Delete.asp?TimeEntryKey=" & rsList("TimeEntryKey") & "<strong>&</strong>ResourceID = " & rsList("ResourceID")
'

Mark Hensler
If there is no answer on Google, then there is no question.

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.