私が取り組んでいるこのフォームの横にこの表があり、ハイパーリンク ボタンがあります。ボタンは FAQ です。私がやろうとしているのは、ハイパーリンク ボタンがクリックされたときです。小さなテキスト ボックス、空のブラウザー、最も簡単な方法が必要です。テキストを含むページを起動していますが、画面の左隅に表示されます。
これが私がコードのために持っているものです:
<asp:LinkButton ID="lnkBttnPsswrdReset" runat="server" OnClientClick="openPopUp()">Password Reset Info</asp:LinkButton><br />
<%--function to open pop up window for password reset hyperlink button --%>
<script type="text/javascript">
function openPopUp() {
myWindow = window.open('', '', 'width=250,height=250')
myWindow.document.write("<p>Please contact the operator to reset yopur password after IT department business hours</p>")
myWindow
myWindow.focus()
}
</script>