JohannIcon
Programmer
Hi All,
How can I pass 2 hidden variables from a redirect page? Let me paste my code to make my question more understandable:-
Council = Request.Form("Council"
Image = Request.Form("Image"
Set fs=Server.CreateObject("Scripting.FileSystemObject"
If (fs.FolderExists(Server.MapPath("\images\councillors\"+Council)))=false Then
set f=fs.CreateFolder(Server.MapPath("\images\councillors\"+Council))
Response.Write("Folder Created"
set f=nothing
set fs=nothing
End If
%>
<input name="CouncilName" type="hidden" id="Council" value="<%=Council%>">
<input name="CouncilImage" type="hidden" id="CouncilImage" value="<%=Image%>">
<%
response.Redirect("CouncillorsInsertPic.asp"
%>
Can you tell me how I can pass these 2 vars (CouncilName and CouncilImage) to the next page.....CouncillorsInsertPic.asp
Thanks for your help
How can I pass 2 hidden variables from a redirect page? Let me paste my code to make my question more understandable:-
Council = Request.Form("Council"
Image = Request.Form("Image"
Set fs=Server.CreateObject("Scripting.FileSystemObject"
If (fs.FolderExists(Server.MapPath("\images\councillors\"+Council)))=false Then
set f=fs.CreateFolder(Server.MapPath("\images\councillors\"+Council))
Response.Write("Folder Created"
set f=nothing
set fs=nothing
End If
%>
<input name="CouncilName" type="hidden" id="Council" value="<%=Council%>">
<input name="CouncilImage" type="hidden" id="CouncilImage" value="<%=Image%>">
<%
response.Redirect("CouncillorsInsertPic.asp"
%>
Can you tell me how I can pass these 2 vars (CouncilName and CouncilImage) to the next page.....CouncillorsInsertPic.asp
Thanks for your help