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("From"
To = Request.QueryString("To"
Store = Request.QueryString("Store"
ScreenNameFile = Request.QueryString("ScreenNameFile"
Face = Request.QueryString("Face"
%>
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("From"
To = Request.QueryString("To"
Store = Request.QueryString("Store"
ScreenNameFile = Request.QueryString("ScreenNameFile"
Face = Request.QueryString("Face"
%>