Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

QueryString

Status
Not open for further replies.

Danielvb

Programmer
Oct 8, 2002
34
US
Hello Team

I have a program in Visual Basic 6.0 that creates an email in which contains a link.

The user must click on the link that redirect the an ASP page.

I am sending the code so I would like to have your feedback if the querystring is ok and the way that I am getting the values in the asp page is right.

Thanks to all for your time

Daniel
Hollywood, FL

=========================================================
VALUES TO SEND
==============

pFrom: Iwork4me
pTo: James.Alls
pStore: 00105
pScreenNameFile: IWORK4ME
pFace: H2


This is the Link
============
& pFrom & "&To=" & pTo & "&Store=" & pStore & "&ScreenName =" & pScreenNameFile & "&Face=" & pFace



In the ASP page[yougotmail.asp]
========================

<%
Dim From
Dim To
Dim Store
Dim ScreenNameFile
Dim Face

FirstName = Request.QueryString(&quot;From&quot;)
To = Request.QueryString(&quot;To&quot;)
Store = Request.QueryString(&quot;Store&quot;)
ScreenNameFile = Request.QueryString(&quot;ScreenNameFile&quot;)
Face = Request.QueryString(&quot;Face&quot;)
%>
 
It all looks good to me. -- Just trying to help...
[wolf]<--- This is a wolf? We need a new icon.......
mikewolf@tst-us.com
 
Thanks mwolf00

I very appreciate your time and for reply ASAP

Thanks again

Hollywood, FL
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top