我的第一个屏幕有2个文本框和一个使用ASP.Net和Bootstrap v3.3.5的下拉列表
部分前端看起来像这样..
v--------<Snip>--------v
<p>
<div class="container">
<div class="row">
<div class="col-med-4">
<div class="text-left">
<label>Order</label>
<asp:TextBox ID="txtPrimOrd" runat="server" class="form-control" placeholder="Primary Reference" MaxLength="30" AutoPostBack="True"></asp:TextBox>
<asp:TextBox ID="txtSecOrd" runat="server" class="form-control" placeholder="Secondary Reference" MaxLength="20" AutoPostBack="True"></asp:TextBox>
<label>Delivery</label>
^--------<Snip>--------^
Behind code looks like this..
v--------<Snip>--------v
If Not IsPostBack Then
'Setup session detail
Else
Try
Dim PB As String = Right(" " & Page.Request.Params.Get("__EVENTTARGET"), 6)
If PB = "rimOrd" Then
'Get SQL to lookup existing ref - return summary if found
Dim ChkPrim As String = ExistAspOrderHDR_ORDERREF("BL", txtPrimOrd.Text)
If Trim(ChkPrim).Length > 0 Then
Session.Contents("MyBad") = "rimOrd"
**'Here call error -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
'js is at ../Scripts/confirm-bootstrap.js
$('#myLinkToConfirm').confirmModal({
confirmTitle : 'Custom please confirm',
confirmMessage : 'Custom are you sure you want to perform this action ?',
confirmOk : 'Custom yes',
confirmCancel : 'Cutom cancel',
confirmDirection : 'rtl',
confirmStyle : 'primary'
confirmCallback : defaultCallback,
confirmDismiss : true,
confirmAutoOpen : false
});**
'Here call error -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Else
txtSecOrd.Focus()
End If
End If
If PB = "SecOrd" Then
ddlQCode.Focus()
End If
^ ---------------- ^
我在'http://maxailloud.github.io/confirm-bootstrap/#'找到一个名为“confirm-bootstrap”的.js,在演示中看起来很棒。 我想向用户提供很多细节,说明为什么他们不能使用该参考,谁使用过它,何时... 或者如果他们刚刚回来完成它,则可以选择编辑该条目。 [重新尝试]或[继续编辑]。
并使错误显而易见,不仅仅是一声嘟嘟'错误接近......'
如何在用户面部弹出此消息或某些消息,然后阅读他们的回复内容? 有没有一种方法可以使用后面的代码调用脚本?
我希望这很清楚,我也没有把问题弄错。
感谢。