Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 asp.net 的新手。在我的主页中,我使用了两个图像按钮。我应该做的是当按钮单击不同的页面需要加载到主页 div 标签时。我怎么能用 asp.net /csharp 做到这一点
使用 iframe
<iframe id="iframe1" ></iframe>
使用js更改src即
document.getElementById('iframe1').src = yourpagepath;
谢谢