gpt4 book ai didi

c# - 从 C# 代码重新加载 ASP.NET 站点中的 iframe

转载 作者:行者123 更新时间:2023-11-28 02:03:44 26 4
gpt4 key购买 nike

在 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 的行不起作用。有什么想法吗?

最佳答案

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

<iframe id="Map" runat="server" src='<%= (TextBox1.Text == "" ? "" : "https://www.google.com/maps/preview#!q=gnc+near%3A+" + zipCode) %>'></iframe>

关于c# - 从 C# 代码重新加载 ASP.NET 站点中的 iframe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18089137/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com