P
pb
Hi all,
I have some code that automatically generates a url depending on user
selections. This url is then set as a hyperlink and the user clicks on
the link that has the target as an iframe on the same page.
What is the easier way to automatically fill the iframe with the
required new web page without having to get the user to click on the
link first.
- the content of the hyperlink are set in code based on user input...
<asp:HyperLink
ID="hyperlinktoGoogleMaps"
runat="server"
Width="450px"
Target="MapFrame">
Click here to view your house
</asp:HyperLink><br />
- this frame is filled when the user clicks the hyperlink, but I would
like it automatically filled server side.
<iframe scrolling=no
frameborder=no
marginwidth=0
marginheight=0
id="MapFrame"
name="MapFrame"
width="480"
height="480">
</iframe>
I have some code that automatically generates a url depending on user
selections. This url is then set as a hyperlink and the user clicks on
the link that has the target as an iframe on the same page.
What is the easier way to automatically fill the iframe with the
required new web page without having to get the user to click on the
link first.
- the content of the hyperlink are set in code based on user input...
<asp:HyperLink
ID="hyperlinktoGoogleMaps"
runat="server"
Width="450px"
Target="MapFrame">
Click here to view your house
</asp:HyperLink><br />
- this frame is filled when the user clicks the hyperlink, but I would
like it automatically filled server side.
<iframe scrolling=no
frameborder=no
marginwidth=0
marginheight=0
id="MapFrame"
name="MapFrame"
width="480"
height="480">
</iframe>