iframe を含む ASP ページを作成しました。iframe にはフォームが含まれています。フォームの送信時に、iframe を別のページにリダイレクトしたいと考えています。
私はこの方法を試しました:
//iframe content:
<html>
<head>
<script type="text/javascript">
function onformsubmit()
{
setTimeout(function ()
{
$(top.document).find('#page').attr('src', 'page2.aspx');
},1000);
}
</script>
</head>
<body>
<form id="form1" runat="server" onsubmit="onformsubmit()">
...
<div class="menubar">
<asp:LinkButton ID="UpdateButton" runat="server" CausesValidation="True" CommandName="Update" Text="Update" />
<asp:LinkButton ID="UpdateCancelButton" runat="server" CausesValidation="False" CommandName="Cancel" Text="Cancel" />
</div>
...
</form>
</body>
</html>
残念ながら、それは機能しません。Visual Basic サーバーサイドを使用しています。クライアント側で私はjavascriptを使用しています。