我有一个按钮,我需要一个确认弹出窗口。
这就像用户单击“是”或“否”的协议。
白色面板中有数据,下面有两个按钮。
数据很大,所以我需要在数据所在的面板中使用滚动条。
这在 winform 应用程序中很容易做到,但现在我正在使用 web 应用程序。我通常使用javascript或Ajax显示弹出确认..
这是 AJAX 中的代码:
<p style="background-color: #D0D8E8; text-align: right; padding-right: 20px;">
<asp:Button class="buttonStyle" ID="Update1" runat="server" Text="Update"
onclick="Update1_Click" CausesValidation="true" />
<cc1:ConfirmButtonExtender ID="Update1_ConfirmButtonExtender" runat="server"
ConfirmText="Are you sure you want to make changes in config file? Please restart 'Copiun Backup Server' service for changes to take effect."
Enabled="True" TargetControlID="Update1">
</cc1:ConfirmButtonExtender>
</p>
这就是我在 javascript 中所做的:
<script type="text/javascript">
function OnConfirm() {
if (confirm("Are you sure you want to reset?")) {
return true;
} else {
return false;
}
}
请帮忙..谢谢