Hello All, I am new to DotNetNuke and I am learning as fast as I can, however, company requirements are faster than I can learn on my own. I am trying to pass parameters to an external website using IFrame. I've added a description of my IFrame setup and a piece of html code from the login page of the websiite. I am running version 05.03.01 which I gathered from the SqlDataProvider file. The website is using "adminName" as the variable holding the user name. I cannot seem to populate the user name field on the external website. I could really use some assistance. Thanks...
This is how I have the IFrame setup.
Link Type: URL
Location: http://monitor.chrsolutions.com/access/accessRoot.asp
Width: 280
Height: 350
Auto Height: (not checked)
Scrolling: Auto
Border: No
Other Options: (all blank, un-checked)
I have QueryString Parameter setup as follows;
Name: adminName
Value: Pass-Through Form Post
(un-named field): adminName="userdemo"
Use as Hash: (not selected)
This is HTLM code from the website which shows the variables for the user name and password fields.
===================================================================
<tr class="logonStyle"><td colspan=2 valign="bottom" align="center" height=30
style="padding-left:20px; "><b>&nbsp;</b></td></tr>
<tr class="logonStyle"><td colspan=2 align="left" height=30 style="padding-left:20px; "><b>Enter Your Username and Password</b></td></tr>
<tr class="logonStyle">
<td align="left" style="padding-left:20px; ">Username</td>
<td align="left"><input type="text" name="adminName" value="" style="width:160px"></td>
</tr>
<tr class="logonStyle">
<td align="left" style="padding-left:20px; ">Password</td>
<td align="left"><input type="password" name="pass" style="width:160px">
</td>
</tr>
<tr class="logonStyle">
<td align="left" style="padding-left:20px; ">Domain</td>
<td align="left"><input type="text" name="domainName" value="" style="width:160px"
title="Your domain logon must be imported with View AD Users before it may be used on this system">
</td>
</tr>
==================================================================