1

在 C# 修改其属性后尝试重新加载 iframe。这是页面:

<script type="text/javascript">
    function reloadFrame(Map) {
        document.getElementById(Map).contentDocument.location.reload(true);
    }
</script>

<asp:TextBox ID="TextBox1" placeholder="Zip code" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Find locations" onclick="Button1_Click" />
<iframe id="Map" runat="server"></iframe>

当单击按钮时,它会运行:

var zipCode = TextBox1.Text;
Map.Attributes.Add("src", "https://www.google.com/maps/preview#!q=gnc+near%3A+" + zipCode);        
browser.Document.InvokeScript("reloadFrame", new[] { "Map" });

但是,重新加载 iframe 的行不起作用。有任何想法吗?

4

1 回答 1

1

如何通过内联代码为 iFrame 设置 src?

<iframe id="Map" runat="server" src='<%= (TextBox1.Text == "" ? "" : "https://www.google.com/maps/preview#!q=gnc+near%3A+" + zipCode) %>'></iframe>
于 2013-08-06T20:48:04.573 回答