以下のコードはalert( "Success");を実行します。単独で関数fSuccessがコメント化されているが、fSuccess()関数を起動しない場合。何故ですか?どうもありがとうございました。
$.when(chkUsername(), chkPassword()).done(function () {
if (boolusername == 0) {
$("#ErrorUN").css("display", "block");
}
else {
if (boolpassword == 0) {
$("#ErrorP").css("display", "block");
}
else {
$.ajax({
type: "POST",
url: "Registration.aspx/Success",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function () { }
});
}
}
}); //when
Imports System.Web.Services
Public Class Registration
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
End Sub
<WebMethod()>
Public Shared Sub Success()
Dim strBreakPoint As String = "qwerty"
End Sub
エンドクラス