Manipulating QUery Strings

S

stuart

Hi, I have seen this on a site:

www.sitename.co.uk/showdetails.asp_Q_ThisID_E_123


Obivously this is some sort of querystring manipulation going on behind
the scenes.

I think I have deciphered it:

_Q_ = ?
THisID = obviously the parameter name
_E_ equals =


Does anybody know how this page can show dynamic data with the above
information being passed across.

I think it must be something to do with an ISAPI filter on the server,
but I could be wrong.

All help on this matter is greatly appriciated(sp?)

Stuart
 
E

Evertjan.

stuart wrote on 07 okt 2005 in microsoft.public.inetserver.asp.general:
Hi, I have seen this on a site:

www.sitename.co.uk/showdetails.asp_Q_ThisID_E_123
[..]

Does anybody know how this page can show dynamic data with the above
information being passed across.
[..]

You could(!!!) do this by using a dedicated 404.asp, having:

=================
qstr = Request.ServerVariables("QUERY_STRING")
session("qstr")=qstr

if instr(qstr,":80/showdetails.asp/")>0 then
server.transfer "/myParsingDir/showdetails.asp"
end if
.......
=============

and in this real showdetails.asp
parsing the content of session("qstr")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,147
Messages
2,570,833
Members
47,377
Latest member
MableYocum

Latest Threads

Top