I am using a module by DataSprings called Dynamic Forms.
I have fields set up on the form to pass the variables in
the querystring. When passed the variables are shown in the
url. "http://www.mysite.com/default.aspx?TabID=58&Contractor=OCS&contact=John%20Doe&phone=555-1212&btc=AM&Work_for=Joe%20Dirt%20Exc.&eow=&eow2=Water&remarkbox=
So I know this part works. But I can not get the variables to show up in page i created in VS2005.
This page is called via the iframe module.
The code for my page is as follows.
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<% TextBox1.Text = Request.QueryString("contact")
TextBox2.Text = Request.QueryString("phone")
'TextBox2.Text = Session("contact")
%>
<table border="1">
<tr><th>variable</th> <th>value</th></tr>
<%
Dim variable
For Each variable in Request.QueryString
Response.Write("<tr><td>" & variable & "</td>")
Response.Write("<td>" & Request.QueryString(variable) & "</td></tr>")
Next
%>
</table>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
Contact Name:
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><br />
<br />
Phone Number:
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox></div>
</form>
</body>
</html>
This page works by itself outside of DNN. Am I missing something? Or is the iframe module not capable of passing the variables on to the page in the iframe?